This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2022-04-20 09:54:58 +00:00
|
|
|
{
|
|
|
|
"env": {
|
|
|
|
"browser": true,
|
|
|
|
"es2021": true,
|
|
|
|
"jquery": true
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"airbnb",
|
|
|
|
"prettier"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"prettier"
|
|
|
|
],
|
|
|
|
"parserOptions": {
|
|
|
|
"ecmaVersion": "latest"
|
|
|
|
},
|
|
|
|
"rules": {
|
|
|
|
"quotes": ["error","double"],
|
|
|
|
"no-use-before-define": "off",
|
|
|
|
"no-unused-vars": "warn",
|
|
|
|
"no-undef": "warn",
|
|
|
|
"camelcase": "off",
|
|
|
|
"no-console": "off",
|
|
|
|
"no-plusplus": "off",
|
|
|
|
"no-param-reassign": "off",
|
|
|
|
"no-new": "warn",
|
|
|
|
"strict": "off",
|
|
|
|
"class-methods-use-this": "off",
|
|
|
|
"eqeqeq": "warn",
|
2022-04-29 09:36:55 +00:00
|
|
|
"radix": "warn",
|
|
|
|
"max-classes-per-file": ["error", 2]
|
2022-04-20 09:54:58 +00:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"API_URLS": true,
|
|
|
|
"Api": true
|
|
|
|
}
|
|
|
|
}
|