-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy path.eslintrc.json
More file actions
28 lines (28 loc) · 811 Bytes
/
.eslintrc.json
File metadata and controls
28 lines (28 loc) · 811 Bytes
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
{
"extends": "@ark120202/eslint-config/node",
"parserOptions": {
"project": [
"build/tsconfig.json",
"test/*/tsconfig.json",
"packages/*/tsconfig.json",
"packages/*/transformer/tsconfig.json"
]
},
"overrides": [
{
"files": ["test/**/*", "packages/**/*.d.ts"],
"rules": {
"no-plusplus": "off",
"no-var": "off",
"vars-on-top": "off",
"unicorn/prevent-abbreviations": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/class-name-casing": "off",
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/triple-slash-reference": "off"
}
}
]
}