scinote-web/app/javascript/.eslintrc.json

30 lines
461 B
JSON
Raw Normal View History

{
"env": {
"browser": true,
2017-07-13 20:30:12 +08:00
"jquery": true,
"es6": true,
"node": true
},
"extends": ["airbnb", "plugin:vue/base"],
"rules": {
2017-09-19 19:33:43 +08:00
"import/extensions": "off",
"import/no-unresolved": "off",
"spaced-comment": [
"error",
"always",
{
"markers": ["="]
}
],
"lines-around-comment": [
"warn",
{
"beforeLineComment": false
}
]
},
"globals": {
"_": true
}
}