31 lines
598 B
JSON
31 lines
598 B
JSON
{
|
|
"extends": ["airbnb-base"],
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "script",
|
|
"ecmaFeatures": {
|
|
"jsx": true
|
|
}
|
|
},
|
|
"globals": {
|
|
"window": "readonly"
|
|
},
|
|
"rules": {
|
|
"comma-dangle": "off",
|
|
"func-names": "off",
|
|
"indent": "off",
|
|
"max-len": "off",
|
|
"no-undef": "off",
|
|
"no-underscore-dangle": "off",
|
|
"object-shorthand": "off",
|
|
"operator-linebreak": "off",
|
|
"prefer-arrow-callback": "off",
|
|
"prefer-destructuring": "off",
|
|
"prefer-template": "off"
|
|
}
|
|
}
|