35 lines
606 B
Plaintext
35 lines
606 B
Plaintext
{
|
|
"env": {
|
|
"browser": true,
|
|
"commonjs": true
|
|
},
|
|
"extends": ["eslint:recommended"],
|
|
"rules": {
|
|
"no-console": 0,
|
|
"strict": [
|
|
"error",
|
|
"safe"
|
|
],
|
|
"indent": [
|
|
"error",
|
|
2
|
|
],
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"single"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"comma-dangle": [
|
|
"error",
|
|
"only-multiline"
|
|
]
|
|
}
|
|
}
|