-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
142 lines (142 loc) · 3.52 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['prettier', '@typescript-eslint', 'import'],
extends: [
'plugin:@typescript-eslint/recommended',
'eslint:recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:prettier/recommended',
],
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
},
settings: {
'import/resolver': {
typescript: {},
},
},
env: {
es6: true,
node: true,
browser: false,
jest: true,
},
rules: {
'no-var': 'error',
'prefer-const': 'error',
'prefer-template': 'error',
'no-shadow': 'error',
'no-shadow-restricted-names': 'error',
'no-undef': 'error',
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': 'error',
'no-cond-assign': ['error', 'always'],
'no-console': 'warn',
'no-debugger': 'error',
'no-constant-condition': 'warn',
'no-dupe-keys': 'error',
'no-duplicate-case': 'error',
'no-empty': 'error',
'no-ex-assign': 'error',
'no-extra-boolean-cast': 0,
'no-extra-semi': 'error',
'no-func-assign': 'error',
'no-inner-declarations': 'error',
'no-invalid-regexp': 'error',
'no-irregular-whitespace': 'error',
'no-obj-calls': 'error',
'no-sparse-arrays': 'error',
'no-unreachable': 'error',
'use-isnan': 'error',
'block-scoped-var': 'error',
'consistent-return': 'error',
curly: ['error', 'multi-line'],
'default-case': 'error',
'dot-notation': [
'error',
{
allowKeywords: true,
},
],
eqeqeq: 'error',
'guard-for-in': 'error',
'no-caller': 'error',
'no-else-return': 'error',
'no-eq-null': 'error',
'no-eval': 'error',
'no-extend-native': 'error',
'no-extra-bind': 'error',
'no-fallthrough': 'error',
'no-floating-decimal': 'error',
'no-implied-eval': 'error',
'no-lone-blocks': 'error',
'no-loop-func': 'error',
'no-multi-str': 'error',
'no-native-reassign': 'error',
'no-new': 'error',
'no-new-func': 'error',
'no-new-wrappers': 'error',
'no-octal': 'error',
'no-octal-escape': 'error',
'no-param-reassign': 'error',
'no-proto': 'error',
'no-redeclare': 'error',
'no-return-assign': 'error',
'no-script-url': 'error',
'no-self-compare': 'error',
'no-sequences': 'error',
'no-throw-literal': 'error',
'no-with': 'error',
radix: 'error',
'vars-on-top': 'error',
'wrap-iife': ['error', 'any'],
yoda: 'error',
quotes: ['error', 'single', 'avoid-escape'],
camelcase: [
'error',
{
properties: 'never',
},
],
'comma-spacing': [
'error',
{
before: false,
after: true,
},
],
'comma-style': ['error', 'last'],
'eol-last': 'error',
'func-names': 'warn',
'key-spacing': [
'error',
{
beforeColon: false,
afterColon: true,
},
],
'new-cap': [
0,
{
newIsCap: true,
},
],
'no-nested-ternary': 'error',
'no-new-object': 'error',
'no-spaced-func': 'error',
'no-trailing-spaces': 'error',
'no-mixed-spaces-and-tabs': 'error',
'no-extra-parens': ['error', 'functions'],
'no-underscore-dangle': 0,
'one-var': ['error', 'never'],
'require-jsdoc': 'off',
'require-atomic-updates': 0,
'@typescript-eslint/explicit-function-return-type': 'off',
'import/prefer-default-export': 0,
'import/named': 'error',
'import/no-cycle': 0,
'import/no-unresolved': 'error',
},
};