blob: f738b63be6154a0868bd8107d3e7e6f34d97326d [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",
"prefer-spread": "off",
"no-restricted-globals": "off",
"------": "off",
"func-names": "off",
"max-len": "off",
"-------": "off",
"no-param-reassign": "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-sequences": "off",
"no-void": "off",
"no-redeclare": "off",
"prefer-arrow-callback": "off",
"no-console": "off",
"no-nested-ternary": "off",
"prefer-rest-params": "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"
}
}