noname/.eslintrc.json

35 lines
519 B
JSON
Raw Normal View History

2018-04-17 07:32:43 +00:00
{
2023-11-15 06:49:32 +00:00
"extends": "eslint:recommended",
"env": {
"browser": true,
"es6": true,
2023-12-05 08:14:34 +00:00
"node": true,
"serviceworker": true,
2023-11-15 06:49:32 +00:00
"worker": true
},
"rules": {
"no-console": 0,
2023-12-05 08:14:34 +00:00
"no-constant-condition": [
2023-11-15 06:49:32 +00:00
"error",
{
2023-12-05 08:14:34 +00:00
"checkLoops": false
2023-11-15 06:49:32 +00:00
}
],
2023-12-05 08:14:34 +00:00
"no-irregular-whitespace": [
2023-11-15 06:49:32 +00:00
"error",
{
2023-12-05 08:14:34 +00:00
"skipStrings": true,
"skipTemplates": true
2023-11-15 06:49:32 +00:00
}
2023-12-05 08:14:34 +00:00
],
"no-redeclare": 0,
"no-undef": 0,
"no-unused-vars": 0,
"require-yield": 0
},
"parserOptions": {
"ecmaVersion": 13,
"sourceType": "module"
2023-11-15 06:49:32 +00:00
}
2024-04-17 05:15:00 +00:00
}