|
| 1 | +module.exports = { |
| 2 | + 'env': { |
| 3 | + 'browser': true, |
| 4 | + 'commonjs': true, |
| 5 | + 'es6': true |
| 6 | + }, |
| 7 | + 'extends': 'eslint:recommended', |
| 8 | + 'globals': { |
| 9 | + 'Atomics': 'readonly', |
| 10 | + 'SharedArrayBuffer': 'readonly' |
| 11 | + }, |
| 12 | + 'parserOptions': { |
| 13 | + 'ecmaVersion': 2018 |
| 14 | + }, |
| 15 | + 'rules': { |
| 16 | + 'accessor-pairs': 'error', |
| 17 | + 'array-bracket-newline': 'error', |
| 18 | + 'array-bracket-spacing': [ |
| 19 | + 'error', |
| 20 | + 'never' |
| 21 | + ], |
| 22 | + 'array-callback-return': 'off', |
| 23 | + 'array-element-newline': 'off', |
| 24 | + 'arrow-body-style': 'off', |
| 25 | + 'arrow-parens': 'off', |
| 26 | + 'arrow-spacing': [ |
| 27 | + 'error', |
| 28 | + { |
| 29 | + 'after': true, |
| 30 | + 'before': true |
| 31 | + } |
| 32 | + ], |
| 33 | + 'block-scoped-var': 'error', |
| 34 | + 'block-spacing': 'error', |
| 35 | + 'brace-style': [ |
| 36 | + 'error', |
| 37 | + '1tbs' |
| 38 | + ], |
| 39 | + 'callback-return': 'error', |
| 40 | + 'camelcase': 'error', |
| 41 | + 'capitalized-comments': 'off', |
| 42 | + 'class-methods-use-this': 'off', |
| 43 | + 'comma-dangle': 'error', |
| 44 | + 'comma-spacing': [ |
| 45 | + 'error', |
| 46 | + { |
| 47 | + 'after': true, |
| 48 | + 'before': false |
| 49 | + } |
| 50 | + ], |
| 51 | + 'comma-style': [ |
| 52 | + 'error', |
| 53 | + 'last' |
| 54 | + ], |
| 55 | + 'complexity': 'error', |
| 56 | + 'computed-property-spacing': [ |
| 57 | + 'error', |
| 58 | + 'never' |
| 59 | + ], |
| 60 | + 'consistent-return': 'off', |
| 61 | + 'consistent-this': 'error', |
| 62 | + 'curly': 'off', |
| 63 | + 'default-case': 'error', |
| 64 | + 'dot-location': [ |
| 65 | + 'error', |
| 66 | + 'property' |
| 67 | + ], |
| 68 | + 'dot-notation': [ |
| 69 | + 'error', |
| 70 | + { |
| 71 | + 'allowKeywords': true |
| 72 | + } |
| 73 | + ], |
| 74 | + 'eol-last': 'error', |
| 75 | + 'eqeqeq': 'error', |
| 76 | + 'func-call-spacing': 'error', |
| 77 | + 'func-name-matching': 'error', |
| 78 | + 'func-names': 'off', |
| 79 | + 'func-style': 'off', |
| 80 | + 'function-paren-newline': 'error', |
| 81 | + 'generator-star-spacing': 'error', |
| 82 | + 'global-require': 'off', |
| 83 | + 'guard-for-in': 'off', |
| 84 | + 'handle-callback-err': 'error', |
| 85 | + 'id-blacklist': 'error', |
| 86 | + 'id-length': 'off', |
| 87 | + 'id-match': 'error', |
| 88 | + 'implicit-arrow-linebreak': [ |
| 89 | + 'error', |
| 90 | + 'beside' |
| 91 | + ], |
| 92 | + 'indent': 'off', |
| 93 | + 'indent-legacy': 'off', |
| 94 | + 'init-declarations': 'off', |
| 95 | + 'jsx-quotes': 'error', |
| 96 | + 'key-spacing': 'error', |
| 97 | + 'keyword-spacing': [ |
| 98 | + 'error', |
| 99 | + { |
| 100 | + 'after': true, |
| 101 | + 'before': true |
| 102 | + } |
| 103 | + ], |
| 104 | + 'line-comment-position': 'off', |
| 105 | + 'linebreak-style': [ |
| 106 | + 'error', |
| 107 | + 'unix' |
| 108 | + ], |
| 109 | + 'lines-around-comment': 'off', |
| 110 | + 'lines-around-directive': 'error', |
| 111 | + 'lines-between-class-members': [ |
| 112 | + 'error', |
| 113 | + 'always' |
| 114 | + ], |
| 115 | + 'max-classes-per-file': 'error', |
| 116 | + 'max-depth': 'error', |
| 117 | + 'max-len': 'error', |
| 118 | + 'max-lines': 'off', |
| 119 | + 'max-lines-per-function': 'error', |
| 120 | + 'max-nested-callbacks': 'error', |
| 121 | + 'max-params': 'error', |
| 122 | + 'max-statements': 'off', |
| 123 | + 'max-statements-per-line': 'error', |
| 124 | + 'multiline-comment-style': [ |
| 125 | + 'error', |
| 126 | + 'separate-lines' |
| 127 | + ], |
| 128 | + 'multiline-ternary': 'off', |
| 129 | + 'new-cap': 'error', |
| 130 | + 'new-parens': 'error', |
| 131 | + 'newline-after-var': 'off', |
| 132 | + 'newline-before-return': 'off', |
| 133 | + 'newline-per-chained-call': 'off', |
| 134 | + 'no-alert': 'error', |
| 135 | + 'no-array-constructor': 'error', |
| 136 | + 'no-async-promise-executor': 'error', |
| 137 | + 'no-await-in-loop': 'error', |
| 138 | + 'no-bitwise': 'error', |
| 139 | + 'no-buffer-constructor': 'error', |
| 140 | + 'no-caller': 'error', |
| 141 | + 'no-catch-shadow': 'error', |
| 142 | + 'no-confusing-arrow': 'error', |
| 143 | + 'no-continue': 'off', |
| 144 | + 'no-div-regex': 'error', |
| 145 | + 'no-duplicate-imports': 'error', |
| 146 | + 'no-else-return': 'off', |
| 147 | + 'no-empty-function': 'error', |
| 148 | + 'no-eq-null': 'error', |
| 149 | + 'no-eval': 'error', |
| 150 | + 'no-extend-native': 'error', |
| 151 | + 'no-extra-bind': 'error', |
| 152 | + 'no-extra-label': 'error', |
| 153 | + 'no-extra-parens': 'error', |
| 154 | + 'no-floating-decimal': 'error', |
| 155 | + 'no-implicit-coercion': 'error', |
| 156 | + 'no-implicit-globals': 'error', |
| 157 | + 'no-implied-eval': 'error', |
| 158 | + 'no-inline-comments': 'off', |
| 159 | + 'no-inner-declarations': [ |
| 160 | + 'error', |
| 161 | + 'functions' |
| 162 | + ], |
| 163 | + 'no-invalid-this': 'error', |
| 164 | + 'no-iterator': 'error', |
| 165 | + 'no-label-var': 'error', |
| 166 | + 'no-labels': 'error', |
| 167 | + 'no-lone-blocks': 'error', |
| 168 | + 'no-lonely-if': 'off', |
| 169 | + 'no-loop-func': 'error', |
| 170 | + 'no-magic-numbers': 'off', |
| 171 | + 'no-misleading-character-class': 'error', |
| 172 | + 'no-mixed-operators': 'off', |
| 173 | + 'no-mixed-requires': 'error', |
| 174 | + 'no-multi-assign': 'off', |
| 175 | + 'no-multi-spaces': 'error', |
| 176 | + 'no-multi-str': 'error', |
| 177 | + 'no-multiple-empty-lines': 'error', |
| 178 | + 'no-native-reassign': 'error', |
| 179 | + 'no-negated-condition': 'off', |
| 180 | + 'no-negated-in-lhs': 'error', |
| 181 | + 'no-nested-ternary': 'error', |
| 182 | + 'no-new': 'error', |
| 183 | + 'no-new-func': 'error', |
| 184 | + 'no-new-object': 'error', |
| 185 | + 'no-new-require': 'error', |
| 186 | + 'no-new-wrappers': 'error', |
| 187 | + 'no-octal-escape': 'error', |
| 188 | + 'no-param-reassign': 'off', |
| 189 | + 'no-path-concat': 'off', |
| 190 | + 'no-plusplus': 'off', |
| 191 | + 'no-process-env': 'off', |
| 192 | + 'no-process-exit': 'off', |
| 193 | + 'no-proto': 'error', |
| 194 | + 'no-prototype-builtins': 'off', |
| 195 | + 'no-restricted-globals': 'error', |
| 196 | + 'no-restricted-imports': 'error', |
| 197 | + 'no-restricted-modules': 'error', |
| 198 | + 'no-restricted-properties': 'error', |
| 199 | + 'no-restricted-syntax': 'error', |
| 200 | + 'no-return-assign': 'error', |
| 201 | + 'no-return-await': 'error', |
| 202 | + 'no-script-url': 'error', |
| 203 | + 'no-self-compare': 'error', |
| 204 | + 'no-sequences': 'error', |
| 205 | + 'no-shadow': 'off', |
| 206 | + 'no-shadow-restricted-names': 'error', |
| 207 | + 'no-spaced-func': 'error', |
| 208 | + 'no-sync': 'off', |
| 209 | + 'no-tabs': 'error', |
| 210 | + 'no-template-curly-in-string': 'error', |
| 211 | + 'no-ternary': 'off', |
| 212 | + 'no-throw-literal': 'error', |
| 213 | + 'no-trailing-spaces': 'error', |
| 214 | + 'no-undef-init': 'error', |
| 215 | + 'no-undefined': 'off', |
| 216 | + 'no-underscore-dangle': 'off', |
| 217 | + 'no-unmodified-loop-condition': 'error', |
| 218 | + 'no-unneeded-ternary': 'error', |
| 219 | + 'no-unused-expressions': 'error', |
| 220 | + 'no-use-before-define': 'off', |
| 221 | + 'no-useless-call': 'error', |
| 222 | + 'no-useless-catch': 'error', |
| 223 | + 'no-useless-computed-key': 'error', |
| 224 | + 'no-useless-concat': 'error', |
| 225 | + 'no-useless-constructor': 'error', |
| 226 | + 'no-useless-rename': 'error', |
| 227 | + 'no-useless-return': 'error', |
| 228 | + 'no-var': 'off', |
| 229 | + 'no-void': 'error', |
| 230 | + 'no-warning-comments': 'off', |
| 231 | + 'no-whitespace-before-property': 'error', |
| 232 | + 'no-with': 'error', |
| 233 | + 'nonblock-statement-body-position': [ |
| 234 | + 'error', |
| 235 | + 'any' |
| 236 | + ], |
| 237 | + 'object-curly-newline': 'error', |
| 238 | + 'object-curly-spacing': [ |
| 239 | + 'error', |
| 240 | + 'never' |
| 241 | + ], |
| 242 | + 'object-shorthand': 'off', |
| 243 | + 'one-var': 'off', |
| 244 | + 'one-var-declaration-per-line': 'error', |
| 245 | + 'operator-assignment': [ |
| 246 | + 'error', |
| 247 | + 'always' |
| 248 | + ], |
| 249 | + 'operator-linebreak': [ |
| 250 | + 'error', |
| 251 | + 'after' |
| 252 | + ], |
| 253 | + 'padded-blocks': 'off', |
| 254 | + 'padding-line-between-statements': 'error', |
| 255 | + 'prefer-arrow-callback': 'off', |
| 256 | + 'prefer-const': 'off', |
| 257 | + 'prefer-destructuring': 'off', |
| 258 | + 'prefer-named-capture-group': 'error', |
| 259 | + 'prefer-numeric-literals': 'error', |
| 260 | + 'prefer-object-spread': 'error', |
| 261 | + 'prefer-promise-reject-errors': [ |
| 262 | + 'error', |
| 263 | + { |
| 264 | + 'allowEmptyReject': true |
| 265 | + } |
| 266 | + ], |
| 267 | + 'prefer-reflect': 'off', |
| 268 | + 'prefer-rest-params': 'error', |
| 269 | + 'prefer-spread': 'off', |
| 270 | + 'prefer-template': 'off', |
| 271 | + 'quote-props': 'off', |
| 272 | + 'quotes': [ |
| 273 | + 'error', |
| 274 | + 'single' |
| 275 | + ], |
| 276 | + 'radix': [ |
| 277 | + 'error', |
| 278 | + 'as-needed' |
| 279 | + ], |
| 280 | + 'require-atomic-updates': 'error', |
| 281 | + 'require-await': 'error', |
| 282 | + 'require-jsdoc': 'off', |
| 283 | + 'require-unicode-regexp': 'off', |
| 284 | + 'rest-spread-spacing': 'error', |
| 285 | + 'semi': 'error', |
| 286 | + 'semi-spacing': [ |
| 287 | + 'error', |
| 288 | + { |
| 289 | + 'after': true, |
| 290 | + 'before': false |
| 291 | + } |
| 292 | + ], |
| 293 | + 'semi-style': [ |
| 294 | + 'error', |
| 295 | + 'last' |
| 296 | + ], |
| 297 | + 'sort-imports': 'error', |
| 298 | + 'sort-keys': 'off', |
| 299 | + 'sort-vars': 'off', |
| 300 | + 'space-before-blocks': 'error', |
| 301 | + 'space-before-function-paren': 'off', |
| 302 | + 'space-in-parens': [ |
| 303 | + 'error', |
| 304 | + 'never' |
| 305 | + ], |
| 306 | + 'space-infix-ops': 'off', |
| 307 | + 'space-unary-ops': 'error', |
| 308 | + 'spaced-comment': [ |
| 309 | + 'error', |
| 310 | + 'always' |
| 311 | + ], |
| 312 | + 'strict': 'error', |
| 313 | + 'switch-colon-spacing': 'error', |
| 314 | + 'symbol-description': 'error', |
| 315 | + 'template-curly-spacing': [ |
| 316 | + 'error', |
| 317 | + 'never' |
| 318 | + ], |
| 319 | + 'template-tag-spacing': 'error', |
| 320 | + 'unicode-bom': [ |
| 321 | + 'error', |
| 322 | + 'never' |
| 323 | + ], |
| 324 | + 'valid-jsdoc': 'off', |
| 325 | + 'vars-on-top': 'off', |
| 326 | + 'wrap-iife': 'error', |
| 327 | + 'wrap-regex': 'error', |
| 328 | + 'yield-star-spacing': 'error', |
| 329 | + 'yoda': [ |
| 330 | + 'error', |
| 331 | + 'never' |
| 332 | + ] |
| 333 | + } |
| 334 | +}; |
0 commit comments