scinote-web/.eslintrc.json

35 lines
456 B
JSON

{
"extends": "google",
"env": {
"browser": true,
"jquery": true
},
"rules": {
"spaced-comment": [
"error",
"always",
{
"markers": [
"="
]
}
],
"lines-around-comment": [
"warn",
{
"beforeLineComment": false
}
],
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
]
},
"globals": {
"_": true
}
}