20 lines
424 B
JSON
20 lines
424 B
JSON
|
{
|
||
|
"env": {
|
||
|
"browser": true,
|
||
|
"es2021": true
|
||
|
},
|
||
|
"extends": "airbnb-base",
|
||
|
"parserOptions": {
|
||
|
"ecmaVersion": 12,
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"rules": {
|
||
|
"quotes": "off",
|
||
|
"indent": "off",
|
||
|
"no-console": "off",
|
||
|
"no-use-before-define": "off",
|
||
|
"no-alert": "off",
|
||
|
"no-restricted-globals": "off",
|
||
|
"quote-props": "off"
|
||
|
}
|
||
|
}
|