|
| 1 | +{ |
| 2 | + "root": true, |
| 3 | + |
| 4 | + "extends": "@ljharb/eslint-config/node/0.4", |
| 5 | + |
| 6 | + "rules": { |
| 7 | + "array-bracket-spacing": 0, |
| 8 | + "array-element-newline": 0, |
| 9 | + "brace-style": 1, |
| 10 | + "camelcase": 1, |
| 11 | + "comma-dangle": 1, |
| 12 | + "comma-spacing": 1, |
| 13 | + "complexity": 0, |
| 14 | + "curly": 1, |
| 15 | + "dot-notation": 1, |
| 16 | + "eol-last": 1, |
| 17 | + "func-style": 1, |
| 18 | + "function-paren-newline": 1, |
| 19 | + "indent": [1, 4], |
| 20 | + "key-spacing": 1, |
| 21 | + "max-lines-per-function": 0, |
| 22 | + "max-nested-callbacks": 1, |
| 23 | + "max-statements": 0, |
| 24 | + "multiline-comment-style": 1, |
| 25 | + "no-array-constructor": 1, |
| 26 | + "no-continue": 1, |
| 27 | + "no-div-regex": 1, |
| 28 | + "no-extra-parens": 1, |
| 29 | + "no-mixed-operators": 1, |
| 30 | + "no-multi-spaces": 1, |
| 31 | + "no-multiple-empty-lines": 1, |
| 32 | + "no-param-reassign": 1, |
| 33 | + "no-plusplus": 1, |
| 34 | + "no-proto": 1, |
| 35 | + "no-redeclare": 1, |
| 36 | + "no-restricted-syntax": 1, |
| 37 | + "no-shadow": 1, |
| 38 | + "no-trailing-spaces": 1, |
| 39 | + "no-unused-vars": 1, |
| 40 | + "no-use-before-define": 1, |
| 41 | + "object-curly-newline": 1, |
| 42 | + "object-curly-spacing": 1, |
| 43 | + "operator-linebreak": 1, |
| 44 | + "quote-props": 1, |
| 45 | + "quotes": 1, |
| 46 | + "semi-style": 1, |
| 47 | + "semi": 1, |
| 48 | + "space-before-blocks": 1, |
| 49 | + "space-before-function-paren": 1, |
| 50 | + "space-infix-ops": 1, |
| 51 | + "strict": 1, |
| 52 | + "wrap-regex": 1, |
| 53 | + }, |
| 54 | +} |
0 commit comments