30 lines
504 B
JSON
30 lines
504 B
JSON
{
|
|
"env": {
|
|
"browser": true
|
|
},
|
|
"extends": "eslint:recommended",
|
|
"rules": {
|
|
"indent": [
|
|
"error",
|
|
4
|
|
],
|
|
"linebreak-style": [
|
|
"error",
|
|
"unix"
|
|
],
|
|
"quotes": [
|
|
"error",
|
|
"double"
|
|
],
|
|
"semi": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"no-undef": [
|
|
"warn"
|
|
],
|
|
"no-unused-vars": [
|
|
"warn"
|
|
]
|
|
}
|
|
} |