-
Notifications
You must be signed in to change notification settings - Fork 68
/
.eslintrc.js
60 lines (60 loc) · 1.8 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
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint'
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
// eslint-config-preact needs a Jest version to be happy, even if Jest isn't used.
// See https://github.com/preactjs/eslint-config-preact/issues/19#issuecomment-997924892
settings: {
jest: { "version": 27 },
},
rules: {
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": "warn",
"camelcase": ["error", { "properties": "never", "ignoreDestructuring": true }],
"no-console": "error"
},
env: {
node: true,
es6: true,
},
overrides: [
{
files: ["test/**/*.ts"],
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
'mocha',
],
},
{
files: ["web/**/*.ts", "web/**/*.tsx"],
parser: '@typescript-eslint/parser',
env: {
browser: true,
node: false,
},
extends: [
'plugin:@typescript-eslint/recommended',
'preact',
],
plugins: [
'@typescript-eslint',
],
rules: {
"no-console": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": ["error"],
"no-useless-constructor": "off",
"@typescript-eslint/no-useless-constructor": ["error"],
},
}
]
};