-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
32 lines (32 loc) · 820 Bytes
/
.eslintrc
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
{
"extends": "@antfu",
"rules": {
"curly": "off",
"@typescript-eslint/indent": "off",
"@typescript-eslint/no-use-before-define": "off",
"arrow-parens": "off",
"@typescript-eslint/brace-style": "off",
"@typescript-eslint/consistent-type-definitions": "off",
"@typescript-eslint/lines-between-class-members": "off",
"max-statements-per-line": [
"error",
{
"max": 3
}
],
"@typescript-eslint/no-unused-vars": [
"error",
{
"vars": "local",
"args": "none",
"ignoreRestSiblings": true,
"caughtErrors": "none"
}
],
"@typescript-eslint/comma-dangle": "off",
"unused-imports/no-unused-vars": "off",
"object-property-newline": "off",
"no-mixed-operators": "off",
"no-alert": "off"
}
}