25 lines
315 B
JSON
25 lines
315 B
JSON
|
{
|
||
|
"env": {
|
||
|
"node": true
|
||
|
},
|
||
|
"parserOptions": {
|
||
|
"sourceType": "module"
|
||
|
},
|
||
|
"extends": "eslint:recommended",
|
||
|
"rules": {
|
||
|
"indent": [
|
||
|
"error",
|
||
|
2
|
||
|
],
|
||
|
"no-console": "off",
|
||
|
"quotes": [
|
||
|
"error",
|
||
|
"single"
|
||
|
],
|
||
|
"semi": [
|
||
|
"error",
|
||
|
"never"
|
||
|
]
|
||
|
}
|
||
|
}
|