-
Notifications
You must be signed in to change notification settings - Fork 7
/
.eslintrc.js
87 lines (87 loc) · 2.51 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
83
84
85
86
87
module.exports = {
env: {
node: true,
es6: true,
mocha: true,
},
extends: [
'airbnb-base',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
project: './tsconfig.json',
},
rules: {
'no-plusplus': [2, {allowForLoopAfterthoughts: true}],
'func-names': 'off',
'no-await-in-loop': 'off',
'class-methods-use-this': 'off',
'max-len': [2, {code: 120}],
'no-underscore-dangle': 'off',
'no-shadow': 'off',
indent: ['error', 2, {SwitchCase: 1}],
'function-paren-newline': ['off', 'never'],
'object-curly-spacing': ['error', 'never'],
'padding-line-between-statements': [
'error',
{
blankLine: 'always',
prev: ['for', 'switch', 'var', 'let', 'const'],
next: 'return',
},
{
blankLine: 'always',
prev: ['for', 'switch'],
next: ['var', 'let', 'const'],
},
{
blankLine: 'always',
prev: ['var', 'let', 'const'],
next: ['switch', 'for', 'if'],
},
],
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'no-console': process.env.NODE_ENV === 'production' ? 2 : 0,
'import/no-unresolved': 0,
'import/extensions': ['off', 'never'],
'no-use-before-define': 0,
'@typescript-eslint/no-unused-vars': [
'error',
{
caughtErrorsIgnorePattern: 'error',
varsIgnorePattern: '^getPSVersion$',
},
],
// Remove after Typescript Migration
'import/no-import-module-exports': 0,
},
overrides: [
{
files: ['*.ts'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'deprecation'],
extends: ['plugin:@typescript-eslint/eslint-recommended', 'plugin:@typescript-eslint/recommended'],
rules: {
'spaced-comment': 0,
'@typescript-eslint/no-extra-semi': 0,
'max-len': ['error', {ignoreComments: true, code: 130}],
'class-methods-use-this': 0,
'no-alert': 0,
'@typescript-eslint/ban-ts-comment': 0,
'@typescript-eslint/no-non-null-assertion': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-this-alias': 0,
'@typescript-eslint/no-inferrable-types': 0,
'@typescript-eslint/explicit-module-boundary-types': ['error', {allowArgumentsExplicitlyTypedAsAny: true}],
'func-names': 0,
'no-new': 0,
'deprecation/deprecation': 'error',
},
},
],
};