forked from comunica/comunica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
198 lines (193 loc) · 6.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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
tsconfigRootDir: __dirname, // this is the reason this is a .js file
project: ['./tsconfig.eslint.json'],
},
plugins: [
'eslint-plugin-tsdoc',
'eslint-plugin-import',
'eslint-plugin-jest',
'eslint-plugin-unused-imports'
],
extends: [
'es/node',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:import/typescript'
],
settings: {
'import/parsers': {
'@typescript-eslint/parser': ['.ts', '.tsx']
},
'import/resolver': {
'typescript': {
'alwaysTryTypes': true // always try to resolve types under `<root>@types` directory even it doesn't contain any source code, like `@types/rdf-js`
},
}
},
globals: {
window: false,
fetch: false,
Headers: false,
Request: false,
XMLHttpRequest: false,
},
rules: {
// Default
'class-methods-use-this': 'off', // Conflicts with functions from interfaces that sometimes don't require `this`
'comma-dangle': ['error', 'always-multiline'],
'dot-location': ['error', 'property'],
'lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }],
'no-underscore-dangle': 'off', // Conflicts with external libraries
'padding-line-between-statements': 'off',
'no-param-reassign': 'off',
'func-style': 'off',
'new-cap': 'off',
'lines-around-comment': ['error', {
beforeBlockComment: false,
afterBlockComment: false,
beforeLineComment: false,
afterLineComment: false,
}],
'no-multi-assign': 'off',
'no-plusplus': 'off',
'guard-for-in': 'off',
'sort-imports': 'off', // Disabled in favor of eslint-plugin-import
'prefer-named-capture-group': 'off',
'max-len': ['error', {
code: 120,
ignoreTemplateLiterals: true,
}],
'unicorn/consistent-function-scoping': 'off',
'no-warning-comments': 'off',
'no-mixed-operators': 'off',
'prefer-destructuring': 'off',
'default-case': 'off', // TSC already takes care of these checks
'no-loop-func': 'off',
'unicorn/no-fn-reference-in-iterator': 'off',
'extended/consistent-err-names': 'off',
'unicorn/prefer-replace-all': 'off',
'unicorn/catch-error-name': ['error', { name: 'error' }],
'unicorn/no-reduce': 'off',
'no-duplicate-imports': 'off', // Incompatible with type imports
'unicorn/consistent-destructuring': 'off',
'unicorn/no-array-callback-reference': 'off',
'unicorn/no-new-array': 'off',
// TS
'@typescript-eslint/lines-between-class-members': ['error', { exceptAfterSingleLine: true }],
'@typescript-eslint/no-invalid-void-type': 'off', // breaks with default void in Asynchandler 2nd generic
'@typescript-eslint/array-type': ['error', { default: 'array' }],
'@typescript-eslint/generic-type-naming': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-unnecessary-condition': 'off', // Problems with optional parameters
'@typescript-eslint/space-before-function-paren': ['error', 'never'],
'@typescript-eslint/promise-function-async': 'off',
'@typescript-eslint/consistent-type-assertions': ['error', { assertionStyle: 'angle-bracket' }],
'@typescript-eslint/member-naming': 'off',
'@typescript-eslint/naming-convention': [
'error',
{
'selector': 'interface',
'format': ['PascalCase'],
'custom': {
'regex': '^I[A-Z]',
'match': true
}
}
],
'@typescript-eslint/no-dynamic-delete': 'off',
'@typescript-eslint/explicit-function-return-type': ['error', {
allowExpressions: true,
allowTypedFunctionExpressions: true,
allowHigherOrderFunctions: true,
allowConciseArrowFunctionExpressionsStartingWithVoid: true,
}],
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
'@typescript-eslint/consistent-type-imports': ['error', { prefer: 'type-imports' }],
// Import
'import/order': ['error', {
alphabetize: {
order: 'asc',
caseInsensitive: true
}
}],
'import/no-unused-modules': 'off',
'unused-imports/no-unused-imports-ts': 'error',
'import/no-extraneous-dependencies': 'error',
'import/no-nodejs-modules': 'error',
// TODO: Try to re-enable the following rules in the future
'global-require': 'off',
'@typescript-eslint/no-require-imports': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'tsdoc/syntax': 'off',
'unicorn/expiring-todo-comments': 'off',
'unicorn/import-style': 'off',
'unicorn/prefer-at': 'off',
'unicorn/prefer-string-replace-all': 'off',
},
overrides: [
{
// Specific rules for bin files
files: ['**/bin/*.ts'],
rules: {
'unicorn/filename-case': ['error', {
'case': 'kebabCase'
}],
'no-process-env': 'off',
'unicorn/no-process-exit': 'off',
}
},
{
// Specific rules for test files
files: ['**/test/**/*.ts'],
env: {
'jest/globals': true,
},
globals: {
'spyOn': false,
'fail': false,
},
rules: {
'mocha/no-synchronous-tests': 'off',
'mocha/valid-test-description': 'off',
'mocha/no-sibling-hooks': 'off',
'max-statements-per-line': 'off',
'id-length': 'off',
'arrow-body-style': 'off',
'line-comment-position': 'off',
'no-inline-comments': 'off',
'unicorn/filename-case': 'off',
'no-new': 'off',
'unicorn/no-nested-ternary': 'off',
'no-return-assign': 'off',
'no-useless-call': 'off',
'no-sync': 'off',
'@typescript-eslint/brace-style': 'off',
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/ban-ts-ignore': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/unbound-method': 'off',
'@typescript-eslint/no-extra-parens': 'off',
'@typescript-eslint/restrict-plus-operands': 'off',
'import/no-extraneous-dependencies': 'off',
}
},
{
// Specific rules for NodeJS-specific files
files: [
'**/test/**/*.ts',
'packages/actor-dereference-file/**/*.ts',
'packages/actor-http-native/**/*.ts',
'packages/logger-bunyan/**/*.ts',
'packages/packager/**/*.ts'
],
rules: {
'import/no-nodejs-modules': 'off',
}
}
],
};