blob: ef6d32ea93f244558c1b9a141f84ad00e5ac415d [file] [log] [blame]
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 12
},
"rules": {
"no-var": "off",
"no-unused-vars": "off",
"prefer-destructuring": "off",
"prefer-template": "off",
"linebreak-style": "off",
"object-shorthand": "off",
"prefer-object-spread": "off",
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}],
"no-undef": "off",
"no-restricted-properties": "off",
"------": "off",
"func-names": "off",
"-------": "off",
"no-param-reassign": "off",
"max-len": "off",
"one-var-declaration-per-line": "off",
"one-var": "off",
"vars-on-top": "off",
"no-continue": "off",
"no-plusplus": "off",
"no-underscore-dangle": "off",
"no-use-before-define": "off",
"strict": "off",
"lines-around-directive": "off",
"no-restricted-globals": "off",
"default-case": "off",
"nonblock-statement-body-position": "off",
"no-else-return": "off",
"no-unused-expressions": "off",
"no-return-assign": "off",
"no-sequences": "off",
"no-cond-assign": "off",
"no-void": "off",
"new-parens": "off",
"no-redeclare": "off",
"no-empty": "off",
"prefer-arrow-callback": "off",
"no-console": "off",
"new-cap": "off",
"no-nested-ternary": "off",
"prefer-rest-params": "off",
"prefer-spread": "off",
"no-floating-decimal": "off",
"object-curly-newline": "off",
"radix": "off",
"no-bitwise": "off",
"no-multi-assign": "off",
"no-prototype-builtins": "off",
"camelcase": "off",
"no-eval": "off",
"no-restricted-syntax": "off",
"eqeqeq": "off"
}
}