Constnium/.eslintrc.json

17 lines
255 B
JSON
Raw Normal View History

2022-06-23 02:27:43 +02:00
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true
},
"extends": [
"standard"
],
"parserOptions": {
"ecmaVersion": "latest"
},
"rules": {
"indent": ["error", 4]
}
}