LoquendoBot/.eslintrc.json
2023-08-04 01:09:06 +02:00

25 lines
557 B
JSON

{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"linebreak-style":"off",
"indent":["error", "tab"],
"no-tabs":"off",
"prefer-destructuring": ["error", {
"AssignmentExpression": {
"array": false,
"object": true
}
}],
"no-console": ["error", { "allow": ["warn", "error"] }]
}
}