-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.json
34 lines (34 loc) · 1005 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
{
"root": true,
"extends": [
"neon/common",
"neon/browser",
"neon/node",
"neon/typescript",
"neon/prettier"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"comma-dangle": ["error", "never"],
"id-length": "off",
"import/newline-after-import": "off",
"n/prefer-global/process": "off",
"import/order": "off",
"import/extensions": "off",
"no-warning-comments": "off",
"unicorn/prefer-math-trunc": "off",
"unicorn/numeric-separators-style": "off",
"typescript-sort-keys/interface": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/lines-between-class-members": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-use-before-define": "off"
}
}