|
| 1 | +import pkmn from "@pkmn/eslint-config"; |
| 2 | + |
| 3 | +export default [...pkmn, { |
| 4 | + ignores: ["eslint.config.mjs", "build"], |
| 5 | +}, { |
| 6 | + rules: { |
| 7 | + "@stylistic/array-bracket-spacing": "off", |
| 8 | + "@stylistic/comma-dangle": "off", |
| 9 | + "@stylistic/indent": "off", |
| 10 | + "@stylistic/key-spacing": "off", |
| 11 | + "@stylistic/member-delimiter-style": "off", |
| 12 | + "@stylistic/no-mixed-spaces-and-tabs": "off", |
| 13 | + "@stylistic/no-multi-spaces": "off", |
| 14 | + "@stylistic/no-multiple-empty-lines": "off", |
| 15 | + "@stylistic/object-curly-spacing": "off", |
| 16 | + "@stylistic/operator-linebreak": "off", |
| 17 | + "@stylistic/quotes": "off", |
| 18 | + "@stylistic/spaced-comment": "off", |
| 19 | + "@typescript-eslint/no-base-to-string": "off", |
| 20 | + "@typescript-eslint/no-floating-promises": "off", |
| 21 | + "@typescript-eslint/no-redundant-type-constituents": "off", |
| 22 | + "@typescript-eslint/no-this-alias": "off", |
| 23 | + "@typescript-eslint/no-unnecessary-type-assertion": "off", |
| 24 | + "@typescript-eslint/no-unsafe-function-type": "off", |
| 25 | + "@typescript-eslint/no-unused-vars": "off", |
| 26 | + "@typescript-eslint/prefer-optional-chain": "off", |
| 27 | + "@typescript-eslint/restrict-template-expressions": "off", |
| 28 | + "@typescript-eslint/return-await": "off", |
| 29 | + "@typescript-eslint/unbound-method": "off", |
| 30 | + "import/order": "off", |
| 31 | + "max-len": "off", |
| 32 | + "no-case-declarations": "off", |
| 33 | + "no-constant-binary-expression": "off", |
| 34 | + "no-shadow": "off", |
| 35 | + "no-undef": "off", |
| 36 | + "no-unused-vars": "off", |
| 37 | + "no-var": "off", |
| 38 | + "sort-imports": "off", |
| 39 | + } |
| 40 | +}]; |
0 commit comments