-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.js
82 lines (82 loc) · 3.21 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
module.exports = {
root: true,
overrides: [
{
files: ['test/**/*.ts', 'scripts/**/*.ts'],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
tsconfigRootDir: __dirname,
createDefaultProgram: true
},
plugins: ['@typescript-eslint', 'unused-imports', 'import'],
extends: ['airbnb-typescript/base', 'plugin:prettier/recommended', 'prettier'],
rules: {
'import/prefer-default-export': 'off',
'@typescript-eslint/no-useless-constructor': 'off',
'no-plusplus': 'off',
'class-method-use-this': 'off',
'no-underscore-dangle': 'off',
'no-inferrable-types': 'off',
'@typescript-eslint/no-unused-vars': [
'error',
{
vars: 'all',
args: 'all',
ignoreRestSiblings: false,
argsIgnorePattern: '^_'
}
],
'@typescript-eslint/no-inferrable-types': 'off',
'class-methods-use-this': 'off',
complexity: ['error', 20],
eqeqeq: ['error', 'always'],
'no-magic-numbers': 'off',
'@typescript-eslint/no-magic-numbers': [
'warn',
{
ignore: [-1, 0, 1, 2, 10, 18, 100, 1000, 16, 64, 256],
detectObjects: true,
ignoreReadonlyClassProperties: true
}
],
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'enumMember',
format: ['UPPER_CASE']
}
],
'no-empty': ['error', { allowEmptyCatch: true }],
// Styling.
'array-bracket-spacing': ['error', 'never'],
'object-curly-spacing': ['error', 'always'],
indent: 'off',
'comma-dangle': 'off',
'@typescript-eslint/comma-dangle': ['error', 'never'],
// Temporary rules. Remove after full refactoring.
'import/no-extraneous-dependencies': 'off',
'@typescript-eslint/dot-notation': 'off',
'no-restricted-globals': 'off',
'@typescript-eslint/no-empty-function': 'off',
'no-param-reassign': 'off',
// Temporary rules. Remove as fast as it can be.
'max-classes-per-file': 'off',
radix: ['warn', 'as-needed'],
'no-prototype-builtins': 'off',
'no-return-assign': 'off',
'no-restricted-syntax': ['error', 'LabeledStatement', 'WithStatement'],
'no-console': [
'warn',
{
allow: ['debug', 'error', 'info']
}
],
'import/export': 0
}
}
],
env: {
es6: true
}
};