-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.js
40 lines (40 loc) · 938 Bytes
/
.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
module.exports = {
env: {
es6: true,
node: true
},
extends: ["airbnb-base", "plugin:prettier/recommended"],
parser: "@typescript-eslint/parser",
parserOptions: {
project: "tsconfig.json",
sourceType: "module"
},
plugins: ["@typescript-eslint"],
rules: {
"no-restricted-syntax": [
"error",
"WithStatement",
"BinaryExpression[operator='in']"
],
"no-useless-constructor": "off",
"no-empty-function": "off",
"no-await-in-loop": "off",
"no-continue": "off",
"no-console": "off",
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ vars: "all", args: "after-used", ignoreRestSiblings: false }
],
"lines-between-class-members": "off",
"no-restricted-globals": "off",
"import/extensions": "off"
},
settings: {
"import/resolver": {
node: {
extensions: [".js", ".ts"]
}
}
}
};