-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
62 lines (62 loc) · 2.14 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
60
61
62
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'local'],
extends: ['plugin:@typescript-eslint/recommended'],
rules: {
'array-bracket-spacing': ['error', 'never'],
'block-spacing': ['error', 'always'],
'comma-spacing': ['error', {
before: false,
after: true,
}],
'indent': ['error', 2, {
'SwitchCase': 1,
}],
'jsx-quotes': ['error', 'prefer-double'],
'keyword-spacing': ['error', {
after: true,
before: true,
}],
'object-curly-spacing': ['error', 'always'],
'no-multi-spaces': 'error',
'no-trailing-spaces': 'error',
'no-whitespace-before-property': 'error',
'semi': ['error', 'always'],
'space-before-function-paren': ['error', {
anonymous: 'always',
asyncArrow: 'always',
named: 'never',
}],
'space-in-parens': ['error', 'never'],
'space-infix-ops': 'error',
'spaced-comment': ['error', 'always', { exceptions: ['-'] }],
'quotes': ['error', 'double', {
allowTemplateLiterals: true,
avoidEscape: true,
}],
'eol-last': ["error", "always"],
'@typescript-eslint/camelcase': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/func-call-spacing': ['error', 'never'],
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-object-literal-type-assertion': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
},
overrides: [
{
files: ['tasks/**/*.js', 'tests/**/*.js'],
rules: {
'@typescript-eslint/no-var-requires': 'off',
},
},
{
files: ['**/*.tsx'],
rules: {
'local/jsx-uses-m-pragma': 'error',
'local/jsx-uses-vars': 'error',
},
},
],
};