-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy path.eslintrc.js
More file actions
58 lines (58 loc) · 1.87 KB
/
.eslintrc.js
File metadata and controls
58 lines (58 loc) · 1.87 KB
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
/* eslint-disable @typescript-eslint/naming-convention */
module.exports = {
'root': true,
'parser': '@typescript-eslint/parser',
'plugins': ['@typescript-eslint'],
'extends': [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended'
],
'rules': {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-require-imports': 'error',
'@typescript-eslint/no-unused-expressions': 'error',
'@typescript-eslint/naming-convention': [
'error',
{
'selector': 'default',
'format': ['camelCase']
},
{
'selector': ['class', 'interface', 'enum'],
'format': ['PascalCase']
},
{
'selector': ['enumMember', 'variable', 'property', 'method'],
'format': ['UPPER_CASE', 'camelCase'],
'leadingUnderscore': 'allow'
}
],
'@typescript-eslint/semi': ['error', 'always'],
'@typescript-eslint/quotes': [
'error',
'single',
{
'allowTemplateLiterals': true,
'avoidEscape': true
}
],
'@typescript-eslint/no-shadow': 'error',
'@typescript-eslint/no-redeclare': 'error',
'no-async-promise-executor': 'off',
'no-redeclare': 'off',
'no-duplicate-case': 'error',
'no-shadow': 'off',
'curly': 'error',
'semi': 'off',
'eqeqeq': ['warn', 'always', { 'null': 'never' }],
'quotes': 'off',
'no-debugger': 'error',
'no-empty': 'error',
'no-var': 'error',
'no-unsafe-finally': 'error',
'new-parens': 'error',
'no-throw-literal': 'error',
'no-useless-catch': 'off'
}
}