35 lines
578 B
Plaintext
35 lines
578 B
Plaintext
{
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"plugins": [
|
|
"html"
|
|
],
|
|
"globals": {
|
|
"$": true
|
|
},
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
4
|
|
],
|
|
// "linebreak-style": [
|
|
// "error",
|
|
// "unix"
|
|
// ],
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"no-console": "off"
|
|
}
|
|
}
|