-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy patheslint.config.mjs
41 lines (40 loc) · 1.49 KB
/
eslint.config.mjs
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
import pkmn from "@pkmn/eslint-config";
export default [...pkmn, {
ignores: ["eslint.config.mjs", "build"],
}, {
rules: {
"@stylistic/array-bracket-spacing": "off",
"@stylistic/comma-dangle": "off",
"@stylistic/indent": "off",
"@stylistic/comma-style": "off",
"@stylistic/key-spacing": "off",
"@stylistic/member-delimiter-style": "off",
"@stylistic/no-mixed-spaces-and-tabs": "off",
"@stylistic/no-multi-spaces": "off",
"@stylistic/no-multiple-empty-lines": "off",
"@stylistic/object-curly-spacing": "off",
"@stylistic/operator-linebreak": "off",
"@stylistic/quotes": "off",
"@stylistic/spaced-comment": "off",
"@typescript-eslint/no-base-to-string": "off",
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-redundant-type-constituents": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-unnecessary-type-assertion": "off",
"@typescript-eslint/no-unsafe-function-type": "off",
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/prefer-optional-chain": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/return-await": "off",
"@typescript-eslint/unbound-method": "off",
"import/order": "off",
"max-len": "off",
"no-case-declarations": "off",
"no-constant-binary-expression": "off",
"no-shadow": "off",
"no-undef": "off",
"no-unused-vars": "off",
"no-var": "off",
"sort-imports": "off",
}
}];