GrassClipper/.eslintrc.json

30 lines
508 B
JSON
Raw Normal View History

2022-05-03 05:44:57 +00:00
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 13
},
"rules": {
2022-05-03 05:48:03 +00:00
"no-undef": 0,
"no-unused-vars": 0,
"no-case-declarations": 0,
2022-05-03 05:44:57 +00:00
"indent": [
"error",
2022-05-03 05:48:03 +00:00
2
2022-05-03 05:44:57 +00:00
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"never"
]
}
}