|
| 1 | +{ |
| 2 | + "env": { |
| 3 | + "node": true, |
| 4 | + "mocha": true, |
| 5 | + "cypress/globals": true |
| 6 | + }, |
| 7 | + "globals": {}, |
| 8 | + "parser": null, |
| 9 | + "parserOptions": {}, |
| 10 | + "plugins": ["cypress", "prettier"], |
| 11 | + "rules": { |
| 12 | + "prefer-const": ["error"], |
| 13 | + "prettier/prettier": ["error"], |
| 14 | + "arrow-body-style": ["off"], |
| 15 | + "prefer-arrow-callback": ["off"], |
| 16 | + "curly": [0], |
| 17 | + "no-unexpected-multiline": [0], |
| 18 | + "@typescript-eslint/lines-around-comment": [0], |
| 19 | + "@typescript-eslint/quotes": [0], |
| 20 | + "babel/quotes": [0], |
| 21 | + "unicorn/template-indent": [0], |
| 22 | + "vue/html-self-closing": [0], |
| 23 | + "vue/max-len": [0], |
| 24 | + "@babel/object-curly-spacing": ["off"], |
| 25 | + "@babel/semi": ["off"], |
| 26 | + "@typescript-eslint/block-spacing": ["off"], |
| 27 | + "@typescript-eslint/brace-style": ["off"], |
| 28 | + "@typescript-eslint/comma-dangle": ["off"], |
| 29 | + "@typescript-eslint/comma-spacing": ["off"], |
| 30 | + "@typescript-eslint/func-call-spacing": ["off"], |
| 31 | + "@typescript-eslint/indent": ["off"], |
| 32 | + "@typescript-eslint/key-spacing": ["off"], |
| 33 | + "@typescript-eslint/keyword-spacing": ["off"], |
| 34 | + "@typescript-eslint/member-delimiter-style": ["off"], |
| 35 | + "@typescript-eslint/no-extra-parens": ["off"], |
| 36 | + "@typescript-eslint/no-extra-semi": ["off"], |
| 37 | + "@typescript-eslint/object-curly-spacing": ["off"], |
| 38 | + "@typescript-eslint/semi": ["off"], |
| 39 | + "@typescript-eslint/space-before-blocks": ["off"], |
| 40 | + "@typescript-eslint/space-before-function-paren": ["off"], |
| 41 | + "@typescript-eslint/space-infix-ops": ["off"], |
| 42 | + "@typescript-eslint/type-annotation-spacing": ["off"], |
| 43 | + "babel/object-curly-spacing": ["off"], |
| 44 | + "babel/semi": ["off"], |
| 45 | + "flowtype/boolean-style": ["off"], |
| 46 | + "flowtype/delimiter-dangle": ["off"], |
| 47 | + "flowtype/generic-spacing": ["off"], |
| 48 | + "flowtype/object-type-curly-spacing": ["off"], |
| 49 | + "flowtype/object-type-delimiter": ["off"], |
| 50 | + "flowtype/quotes": ["off"], |
| 51 | + "flowtype/semi": ["off"], |
| 52 | + "flowtype/space-after-type-colon": ["off"], |
| 53 | + "flowtype/space-before-generic-bracket": ["off"], |
| 54 | + "flowtype/space-before-type-colon": ["off"], |
| 55 | + "flowtype/union-intersection-spacing": ["off"], |
| 56 | + "react/jsx-child-element-spacing": ["off"], |
| 57 | + "react/jsx-closing-bracket-location": ["off"], |
| 58 | + "react/jsx-closing-tag-location": ["off"], |
| 59 | + "react/jsx-curly-newline": ["off"], |
| 60 | + "react/jsx-curly-spacing": ["off"], |
| 61 | + "react/jsx-equals-spacing": ["off"], |
| 62 | + "react/jsx-first-prop-new-line": ["off"], |
| 63 | + "react/jsx-indent": ["off"], |
| 64 | + "react/jsx-indent-props": ["off"], |
| 65 | + "react/jsx-max-props-per-line": ["off"], |
| 66 | + "react/jsx-newline": ["off"], |
| 67 | + "react/jsx-one-expression-per-line": ["off"], |
| 68 | + "react/jsx-props-no-multi-spaces": ["off"], |
| 69 | + "react/jsx-tag-spacing": ["off"], |
| 70 | + "react/jsx-wrap-multilines": ["off"], |
| 71 | + "standard/array-bracket-even-spacing": ["off"], |
| 72 | + "standard/computed-property-even-spacing": ["off"], |
| 73 | + "standard/object-curly-even-spacing": ["off"], |
| 74 | + "unicorn/empty-brace-spaces": ["off"], |
| 75 | + "unicorn/no-nested-ternary": ["off"], |
| 76 | + "unicorn/number-literal-case": ["off"], |
| 77 | + "vue/array-bracket-newline": ["off"], |
| 78 | + "vue/array-bracket-spacing": ["off"], |
| 79 | + "vue/array-element-newline": ["off"], |
| 80 | + "vue/arrow-spacing": ["off"], |
| 81 | + "vue/block-spacing": ["off"], |
| 82 | + "vue/block-tag-newline": ["off"], |
| 83 | + "vue/brace-style": ["off"], |
| 84 | + "vue/comma-dangle": ["off"], |
| 85 | + "vue/comma-spacing": ["off"], |
| 86 | + "vue/comma-style": ["off"], |
| 87 | + "vue/dot-location": ["off"], |
| 88 | + "vue/func-call-spacing": ["off"], |
| 89 | + "vue/html-closing-bracket-newline": ["off"], |
| 90 | + "vue/html-closing-bracket-spacing": ["off"], |
| 91 | + "vue/html-end-tags": ["off"], |
| 92 | + "vue/html-indent": ["off"], |
| 93 | + "vue/html-quotes": ["off"], |
| 94 | + "vue/key-spacing": ["off"], |
| 95 | + "vue/keyword-spacing": ["off"], |
| 96 | + "vue/max-attributes-per-line": ["off"], |
| 97 | + "vue/multiline-html-element-content-newline": ["off"], |
| 98 | + "vue/multiline-ternary": ["off"], |
| 99 | + "vue/mustache-interpolation-spacing": ["off"], |
| 100 | + "vue/no-extra-parens": ["off"], |
| 101 | + "vue/no-multi-spaces": ["off"], |
| 102 | + "vue/no-spaces-around-equal-signs-in-attribute": ["off"], |
| 103 | + "vue/object-curly-newline": ["off"], |
| 104 | + "vue/object-curly-spacing": ["off"], |
| 105 | + "vue/object-property-newline": ["off"], |
| 106 | + "vue/operator-linebreak": ["off"], |
| 107 | + "vue/quote-props": ["off"], |
| 108 | + "vue/script-indent": ["off"], |
| 109 | + "vue/singleline-html-element-content-newline": ["off"], |
| 110 | + "vue/space-in-parens": ["off"], |
| 111 | + "vue/space-infix-ops": ["off"], |
| 112 | + "vue/space-unary-ops": ["off"], |
| 113 | + "vue/template-curly-spacing": ["off"], |
| 114 | + "space-unary-word-ops": ["off"], |
| 115 | + "generator-star": ["off"], |
| 116 | + "no-comma-dangle": ["off"], |
| 117 | + "no-reserved-keys": ["off"], |
| 118 | + "no-space-before-semi": ["off"], |
| 119 | + "no-wrap-func": ["off"], |
| 120 | + "space-after-function-name": ["off"], |
| 121 | + "space-before-function-parentheses": ["off"], |
| 122 | + "space-in-brackets": ["off"], |
| 123 | + "no-arrow-condition": ["off"], |
| 124 | + "space-after-keywords": ["off"], |
| 125 | + "space-before-keywords": ["off"], |
| 126 | + "space-return-throw-case": ["off"], |
| 127 | + "no-spaced-func": ["off"], |
| 128 | + "indent-legacy": ["off"], |
| 129 | + "array-bracket-newline": ["off"], |
| 130 | + "array-bracket-spacing": ["off"], |
| 131 | + "array-element-newline": ["off"], |
| 132 | + "arrow-parens": ["off"], |
| 133 | + "arrow-spacing": ["off"], |
| 134 | + "block-spacing": ["off"], |
| 135 | + "brace-style": ["off"], |
| 136 | + "comma-dangle": ["off"], |
| 137 | + "comma-spacing": ["off"], |
| 138 | + "comma-style": ["off"], |
| 139 | + "computed-property-spacing": ["off"], |
| 140 | + "dot-location": ["off"], |
| 141 | + "eol-last": ["off"], |
| 142 | + "func-call-spacing": ["off"], |
| 143 | + "function-call-argument-newline": ["off"], |
| 144 | + "function-paren-newline": ["off"], |
| 145 | + "generator-star-spacing": ["off"], |
| 146 | + "implicit-arrow-linebreak": ["off"], |
| 147 | + "indent": ["off"], |
| 148 | + "jsx-quotes": ["off"], |
| 149 | + "key-spacing": ["off"], |
| 150 | + "keyword-spacing": ["off"], |
| 151 | + "linebreak-style": ["off"], |
| 152 | + "lines-around-comment": [0], |
| 153 | + "max-len": [0], |
| 154 | + "max-statements-per-line": ["off"], |
| 155 | + "multiline-ternary": ["off"], |
| 156 | + "new-parens": ["off"], |
| 157 | + "newline-per-chained-call": ["off"], |
| 158 | + "no-confusing-arrow": [0], |
| 159 | + "no-extra-parens": ["off"], |
| 160 | + "no-extra-semi": ["off"], |
| 161 | + "no-floating-decimal": ["off"], |
| 162 | + "no-mixed-operators": [0], |
| 163 | + "no-mixed-spaces-and-tabs": ["off"], |
| 164 | + "no-multi-spaces": ["off"], |
| 165 | + "no-multiple-empty-lines": ["off"], |
| 166 | + "no-tabs": [0], |
| 167 | + "no-trailing-spaces": ["off"], |
| 168 | + "no-whitespace-before-property": ["off"], |
| 169 | + "nonblock-statement-body-position": ["off"], |
| 170 | + "object-curly-newline": ["off"], |
| 171 | + "object-curly-spacing": ["off"], |
| 172 | + "object-property-newline": ["off"], |
| 173 | + "one-var-declaration-per-line": ["off"], |
| 174 | + "operator-linebreak": ["off"], |
| 175 | + "padded-blocks": ["off"], |
| 176 | + "quote-props": ["off"], |
| 177 | + "quotes": [0], |
| 178 | + "rest-spread-spacing": ["off"], |
| 179 | + "semi": ["off"], |
| 180 | + "semi-spacing": ["off"], |
| 181 | + "semi-style": ["off"], |
| 182 | + "space-before-blocks": ["off"], |
| 183 | + "space-before-function-paren": ["off"], |
| 184 | + "space-in-parens": ["off"], |
| 185 | + "space-infix-ops": ["off"], |
| 186 | + "space-unary-ops": ["off"], |
| 187 | + "switch-colon-spacing": ["off"], |
| 188 | + "template-curly-spacing": ["off"], |
| 189 | + "template-tag-spacing": ["off"], |
| 190 | + "wrap-iife": ["off"], |
| 191 | + "wrap-regex": ["off"], |
| 192 | + "yield-star-spacing": ["off"], |
| 193 | + "react/jsx-space-before-closing": ["off"], |
| 194 | + "cypress/no-assigning-return-values": ["error"], |
| 195 | + "cypress/no-unnecessary-waiting": ["error"], |
| 196 | + "cypress/no-async-tests": ["error"], |
| 197 | + "cypress/unsafe-to-chain-command": ["error"], |
| 198 | + "constructor-super": ["error"], |
| 199 | + "for-direction": ["error"], |
| 200 | + "getter-return": ["error"], |
| 201 | + "no-async-promise-executor": ["error"], |
| 202 | + "no-case-declarations": ["error"], |
| 203 | + "no-class-assign": ["error"], |
| 204 | + "no-compare-neg-zero": ["error"], |
| 205 | + "no-cond-assign": ["error"], |
| 206 | + "no-const-assign": ["error"], |
| 207 | + "no-constant-condition": ["error"], |
| 208 | + "no-control-regex": ["error"], |
| 209 | + "no-debugger": ["error"], |
| 210 | + "no-delete-var": ["error"], |
| 211 | + "no-dupe-args": ["error"], |
| 212 | + "no-dupe-class-members": ["error"], |
| 213 | + "no-dupe-else-if": ["error"], |
| 214 | + "no-dupe-keys": ["error"], |
| 215 | + "no-duplicate-case": ["error"], |
| 216 | + "no-empty": ["error"], |
| 217 | + "no-empty-character-class": ["error"], |
| 218 | + "no-empty-pattern": ["error"], |
| 219 | + "no-ex-assign": ["error"], |
| 220 | + "no-extra-boolean-cast": ["error"], |
| 221 | + "no-fallthrough": ["error"], |
| 222 | + "no-func-assign": ["error"], |
| 223 | + "no-global-assign": ["error"], |
| 224 | + "no-import-assign": ["error"], |
| 225 | + "no-inner-declarations": ["error"], |
| 226 | + "no-invalid-regexp": ["error"], |
| 227 | + "no-irregular-whitespace": ["error"], |
| 228 | + "no-loss-of-precision": ["error"], |
| 229 | + "no-misleading-character-class": ["error"], |
| 230 | + "no-new-symbol": ["error"], |
| 231 | + "no-nonoctal-decimal-escape": ["error"], |
| 232 | + "no-obj-calls": ["error"], |
| 233 | + "no-octal": ["error"], |
| 234 | + "no-prototype-builtins": ["error"], |
| 235 | + "no-redeclare": ["error"], |
| 236 | + "no-regex-spaces": ["error"], |
| 237 | + "no-self-assign": ["error"], |
| 238 | + "no-setter-return": ["error"], |
| 239 | + "no-shadow-restricted-names": ["error"], |
| 240 | + "no-sparse-arrays": ["error"], |
| 241 | + "no-this-before-super": ["error"], |
| 242 | + "no-undef": ["error"], |
| 243 | + "no-unreachable": ["error"], |
| 244 | + "no-unsafe-finally": ["error"], |
| 245 | + "no-unsafe-negation": ["error"], |
| 246 | + "no-unsafe-optional-chaining": ["error"], |
| 247 | + "no-unused-labels": ["error"], |
| 248 | + "no-unused-vars": ["error"], |
| 249 | + "no-useless-backreference": ["error"], |
| 250 | + "no-useless-catch": ["error"], |
| 251 | + "no-useless-escape": ["error"], |
| 252 | + "no-with": ["error"], |
| 253 | + "require-yield": ["error"], |
| 254 | + "use-isnan": ["error"], |
| 255 | + "valid-typeof": ["error"] |
| 256 | + }, |
| 257 | + "settings": {}, |
| 258 | + "ignorePatterns": [] |
| 259 | +} |
0 commit comments