-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
40 lines (40 loc) · 1.2 KB
/
.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
{
"root": true,
"extends": ["neon/common", "neon/node", "neon/typescript", "neon/prettier"],
"parserOptions": {
"project": ["tsconfig.json"]
},
"rules": {
"comma-dangle": ["error", "never"],
"id-length": "off",
"import/newline-after-import": "off",
"import/extensions": "off",
"no-warning-comments": "off",
"no-use-before-define": "off",
"unicorn/prefer-math-trunc": "off",
"unicorn/numeric-separators-style": "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/prefer-ts-expect-error": "off",
"@typescript-eslint/consistent-type-assertions": "off",
"@typescript-eslint/no-use-before-define": "off",
"import/no-extraneous-dependencies": "off"
},
"globals": {
"defineProps": "readonly",
"defineEmits": "readonly",
"defineExpose": "readonly"
},
"settings": {
"import/resolver": {
"typescript": {
"project": ["tsconfig.json"]
}
}
}
}