-
Notifications
You must be signed in to change notification settings - Fork 104
/
.eslintrc.js
147 lines (146 loc) · 3.99 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
143
144
145
146
147
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
'import',
'jest',
'eslint-comments',
],
env: {
commonjs: true,
es6: true,
node: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'plugin:eslint-comments/recommended',
],
globals: {
'Atomics': 'readonly',
'SharedArrayBuffer': 'readonly',
},
parserOptions: {
ecmaVersion: 2019,
tsconfigRootDir: __dirname,
project: ['./tsconfig.json'],
},
rules: {
indent: 'off',
'@typescript-eslint/indent': [
'error',
'tab',
{
FunctionDeclaration: { body: 1, parameters: 2 },
FunctionExpression: { body: 1, parameters: 2 },
SwitchCase: 1,
},
],
'linebreak-style': ['error', 'unix'],
quotes: 'off',
'@typescript-eslint/quotes': [
'error',
'single',
{ avoidEscape: true },
],
curly: ['error', 'all'],
'comma-dangle': [
'error',
'always-multiline',
],
'no-console': 'error',
'no-process-exit': 'error',
'no-template-curly-in-string': 'error',
'require-await': 'off',
semi: 'off', // disable to allow @typescript-eslint/semi to do its job
'@typescript-eslint/semi': ['error', 'never'],
'@typescript-eslint/member-delimiter-style': [
'error',
{
multiline: {
delimiter: 'none',
requireLast: true,
},
singleline: {
delimiter: 'semi',
requireLast: false,
},
},
],
'@typescript-eslint/consistent-type-definitions': ['error', 'type'],
'@typescript-eslint/explicit-function-return-type': ['error', {
allowExpressions: true,
}],
'@typescript-eslint/explicit-module-boundary-types': 'error',
'@typescript-eslint/no-explicit-any': 'error',
'@typescript-eslint/no-non-null-assertion': 'error',
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': [
'error',
{ functions: false, classes: false, enums: false, variables: true },
],
'@typescript-eslint/no-var-requires': 'error',
'@typescript-eslint/ban-ts-comment': 'error',
'@typescript-eslint/no-floating-promises': 'error',
'space-infix-ops': 'off',
'@typescript-eslint/space-infix-ops': 'error',
'object-curly-spacing': 'off',
'@typescript-eslint/object-curly-spacing': ['error', 'always'],
'comma-spacing': 'off',
'@typescript-eslint/comma-spacing': ['error'],
'@typescript-eslint/type-annotation-spacing': 'error',
// disallow non-import statements appearing before import statements
'import/first': 'error',
// Require a newline after the last import/require in a group
'import/newline-after-import': ['error', { 'count': 2 }],
// Forbid import of modules using absolute paths
'import/no-absolute-path': 'error',
// disallow AMD require/define
'import/no-amd': 'error',
// Forbid mutable exports
'import/no-mutable-exports': 'error',
// Prevent importing the default as if it were named
'import/no-named-default': 'error',
// Prohibit named exports
'import/no-named-export': 'off', // we want everything to be a named export
// Forbid a module from importing itself
'import/no-self-import': 'error',
// Require modules with a single export to use a default export
'import/prefer-default-export': 'off', // we want everything to be named
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'default',
format: ['camelCase'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allow',
// interfaces on the Hub are snake_case
filter: {
regex: '^(driver_id|driver_name|log_level|driver_id|driver_name|archive_hash)$',
match: false,
},
},
{
selector: 'variable',
format: ['camelCase', 'UPPER_CASE'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allow',
},
{
selector: 'typeLike',
format: ['PascalCase'],
},
{
selector: 'objectLiteralProperty',
format: ['camelCase', 'PascalCase'],
},
{
selector: 'enumMember',
format: ['PascalCase', 'UPPER_CASE'],
},
],
"no-console": "off",
},
}