forked from nicoespeon/abracadabra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
49 lines (45 loc) · 1.16 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
const OFF = 0;
const WARN = 1;
const ERROR = 2;
module.exports = {
env: {
es2021: true,
node: true
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 13,
sourceType: "module"
},
plugins: ["@typescript-eslint"],
ignorePatterns: ["node_modules", "out", "_templates", "src/playground"],
rules: {
eqeqeq: [ERROR, "smart"],
radix: ERROR,
"@typescript-eslint/ban-ts-comment": OFF,
"@typescript-eslint/ban-types": OFF,
"@typescript-eslint/no-empty-function": OFF,
"@typescript-eslint/no-explicit-any": OFF,
"@typescript-eslint/no-unused-vars": OFF,
"block-scoped-var": ERROR,
"default-case-last": ERROR,
"default-case": ERROR,
"dot-notation": ERROR,
"func-name-matching": ERROR,
"guard-for-in": ERROR,
"max-lines": [ERROR, { max: 1024 }],
"max-nested-callbacks": ERROR,
"new-cap": ERROR,
"no-invalid-this": ERROR,
"no-unused-expressions": ERROR,
"consistent-this": OFF,
"no-control-regex": OFF,
"no-empty": OFF,
"no-use-before-define": OFF
}
};