-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy path.eslintrc.js
59 lines (57 loc) · 1.54 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['jest', '@typescript-eslint', 'simple-import-sort', 'prettier'],
extends: [
'eslint:recommended',
'plugin:jest/recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
],
env: {
node: true,
es6: true,
},
root: true,
rules: {
'prettier/prettier': 'error',
'@typescript-eslint/no-unused-vars': [
'error',
{
vars: 'all',
args: 'none',
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
ignoreRestSiblings: true,
},
],
'prefer-destructuring': [
'error',
{
array: false,
object: true,
},
],
'prefer-const': 'error',
'prefer-template': 'error',
'simple-import-sort/imports': 'error',
'simple-import-sort/exports': 'error',
'no-underscore-dangle': 'off',
'no-param-reassign': 'off',
'no-console': 'off',
'no-warning-comments': ['warn', { terms: ['fixme'], location: 'start' }],
'no-unused-vars': 'off', // replaced by @typescript-eslint/no-unused-vars
'@typescript-eslint/no-empty-function': 'off',
'jest/valid-title': 'off',
// FIXME: enable
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'jest/expect-expect': [
'error',
{
assertFunctionNames: ['expect', 'expectTransformation'],
},
],
},
}