-
Notifications
You must be signed in to change notification settings - Fork 181
/
.eslintrc.js
54 lines (54 loc) · 1.29 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
module.exports = {
plugins: ['import', 'unused-imports', '@typescript-eslint'],
parser: '@typescript-eslint/parser',
overrides: [
{
files: ['*.ts']
}
],
parserOptions: {
ecmaVersion: 2017,
sourceType: 'module',
project: './tsconfig.json'
},
ignorePatterns: ['.eslintrc.js', 'rollup.config.js'],
rules: {
curly: ['error', 'all'],
'no-extra-label': 'error',
'no-unused-labels': 'error',
'new-parens': 'error',
'no-new-wrappers': 'error',
'no-debugger': 'error',
'no-duplicate-case': 'error',
'no-throw-literal': 'error',
'no-return-await': 'error',
'no-unsafe-finally': 'error',
'no-unused-expressions': [
'error',
{
allowShortCircuit: true
}
],
'no-var': 'error',
'object-shorthand': 'error',
'prefer-arrow-callback': [
'error',
{
allowNamedFunctions: true
}
],
'prefer-const': [
'error',
{
destructuring: 'all'
}
],
'no-array-constructor': 'error',
'import/no-default-export': 'error',
'import/no-duplicates': 'error',
'unused-imports/no-unused-imports-ts': 'error',
'default-case': 'error',
'@typescript-eslint/member-ordering': 'error',
'@typescript-eslint/no-floating-promises': 'error'
}
};