noname/.eslintrc.json

20 lines
562 B
JSON
Raw Normal View History

2018-04-17 07:32:43 +00:00
{
2023-11-06 18:57:35 +00:00
"extends": "eslint:recommended",
2018-04-17 07:32:43 +00:00
"env": {
"browser": true,
"node": true,
"es6": true,
"worker": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 0,
"no-undef": 0,
2023-11-06 15:22:32 +00:00
"no-redeclare": 0,
2023-11-06 18:07:27 +00:00
"require-yield": 0,
2023-11-06 15:22:32 +00:00
"no-irregular-whitespace": ["error", { "skipStrings": true, "skipTemplates": true }],
"no-constant-condition": ["error", { "checkLoops": false }]/* ,
"comma-dangle": ["error", "only-multiline"],
"complexity": ["error",100] */
2018-04-17 07:32:43 +00:00
}
}