|
| 1 | +{ |
| 2 | + "env": { |
| 3 | + "node": true, |
| 4 | + "builtin": true |
| 5 | + }, |
| 6 | + "globals": {}, |
| 7 | + "rules": { |
| 8 | + "block-scoped-var": 0, |
| 9 | + "camelcase": 0, |
| 10 | + "comma-spacing": [1, {"before": false, "after": true}], |
| 11 | + "consistent-return": 2, |
| 12 | + "curly": [2, "all"], |
| 13 | + "dot-notation": [1, { "allowKeywords": true }], |
| 14 | + "eqeqeq": [2, "allow-null"], |
| 15 | + "global-strict": [0, "never"], |
| 16 | + "guard-for-in": 2, |
| 17 | + "indent": [2, 2, {"SwitchCase": 1, "VariableDeclarator": 1}], |
| 18 | + "lines-around-comment": [2, { |
| 19 | + "beforeBlockComment": true, |
| 20 | + "beforeLineComment": true, |
| 21 | + "allowBlockStart": true, |
| 22 | + "allowObjectStart": true, |
| 23 | + "allowArrayStart": true |
| 24 | + }], |
| 25 | + "key-spacing": 0, |
| 26 | + "keyword-spacing": 1, |
| 27 | + "new-cap": 0, |
| 28 | + "no-alert": 2, |
| 29 | + "no-bitwise": 2, |
| 30 | + "no-caller": 2, |
| 31 | + "no-cond-assign": [2, "except-parens"], |
| 32 | + "no-debugger": 2, |
| 33 | + "no-dupe-args": 2, |
| 34 | + "no-dupe-keys": 2, |
| 35 | + "no-empty": 2, |
| 36 | + "no-eval": 2, |
| 37 | + "no-extend-native": 2, |
| 38 | + "no-extra-bind": 2, |
| 39 | + "no-extra-parens": 0, |
| 40 | + "no-extra-semi": 2, |
| 41 | + "no-func-assign": 2, |
| 42 | + "no-implied-eval": 2, |
| 43 | + "no-invalid-regexp": 2, |
| 44 | + "no-irregular-whitespace": 1, |
| 45 | + "no-iterator": 2, |
| 46 | + "no-loop-func": 2, |
| 47 | + "no-mixed-requires": 0, |
| 48 | + "no-multi-str": 2, |
| 49 | + "no-multi-spaces": 1, |
| 50 | + "no-native-reassign": 2, |
| 51 | + "no-new": 2, |
| 52 | + "no-param-reassign": 1, |
| 53 | + "no-proto": 2, |
| 54 | + "no-redeclare": 0, |
| 55 | + "no-script-url": 2, |
| 56 | + "no-self-assign": 2, |
| 57 | + "no-self-compare": 2, |
| 58 | + "no-sequences": 2, |
| 59 | + "no-shadow": 2, |
| 60 | + "no-undef": 2, |
| 61 | + "no-underscore-dangle": 0, |
| 62 | + "no-unreachable": 1, |
| 63 | + "no-unused-vars": 1, |
| 64 | + "no-use-before-define": 1, |
| 65 | + "no-useless-call": 2, |
| 66 | + "no-useless-concat": 2, |
| 67 | + "no-with": 2, |
| 68 | + "quotes": [0, "single"], |
| 69 | + "radix": 2, |
| 70 | + "semi": [0, "never"], |
| 71 | + "strict": 0, |
| 72 | + "space-before-blocks": 1, |
| 73 | + "space-before-function-paren": [1, { |
| 74 | + "anonymous": "always", |
| 75 | + "named": "never" |
| 76 | + }], |
| 77 | + "space-in-parens": [1, "never"], |
| 78 | + "space-infix-ops": 1, |
| 79 | + "valid-typeof": 2, |
| 80 | + "vars-on-top": 0, |
| 81 | + "wrap-iife": [2, "inside"] |
| 82 | + } |
| 83 | +} |
0 commit comments