-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
.eslintrc.json
41 lines (41 loc) · 1018 Bytes
/
.eslintrc.json
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
{
"parser": "@typescript-eslint/parser",
"env": {
"browser": false,
"es2021": true,
"node": true
},
"extends": [
"incredible",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": {
"ecmaVersion": 2021,
"ecmaFeatures": {
"modules": true
}
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error",
"node/no-unpublished-import": ["error", {
"allowModules": ["@cfworker/json-schema", "dotenv"]
}],
"no-process-exit": "off",
"no-sync": "off",
"no-shadow": "off",
"object-curly-spacing": "off",
"comma-dangle": "off",
"censor/no-swear": "off",
"@typescript-eslint/no-inferrable-types": "off",
"object-shorthand": "off"
},
"settings": {
"import/resolver": {
"typescript": {}
}
}
}