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