-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.js
42 lines (42 loc) · 1.24 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
const { resolve } = require('path')
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: ['jest', 'eslint-comments'],
env: {
'jest/globals': true
},
extends: [
'eslint:recommended',
'plugin:eslint-comments/recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'standard'
],
parserOptions: {
parser: '@typescript-eslint/parser',
project: resolve(__dirname, './tsconfig.eslint.json'),
tsconfigRootDir: __dirname,
ecmaVersion: 'latest',
sourceType: 'module'
},
globals: { BigInt: true, console: true, WebAssembly: true, NodeJS: true, __buildDate__: 'readonly', __buildVersion__: 'readonly' },
rules: {
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': ['error'],
'@typescript-eslint/explicit-module-boundary-types': 'off',
'eslint-comments/disable-enable-pair': [
'error',
{ allowWholeFile: true }
],
'eslint-comments/no-unused-disable': 'error',
'import/order': [
'error',
{ 'newlines-between': 'always', alphabetize: { order: 'asc' } }
],
'sort-imports': [
'error',
{ ignoreDeclarationSort: true, ignoreCase: true }
]
}
}