15 lines
282 B
JSON
15 lines
282 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"es2021": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"ecmaVersion": "latest",
|
|
"sourceType": "module"
|
|
},
|
|
"rules": {
|
|
"no-unused-vars": "warn",
|
|
"no-console": ["warn", { "allow": ["warn", "error"] }]
|
|
}
|
|
} |