scinote-web/.eslintrc.json
2023-11-23 09:50:39 +01:00

44 lines
663 B
JSON

{
"env": {
"browser": true,
"jquery": true,
"es6": true,
"node": true
},
"extends": ["airbnb", "plugin:vue/base"],
"rules": {
"import/extensions": "off",
"import/no-unresolved": "off",
"spaced-comment": [
"error",
"always",
{
"markers": ["="]
}
],
"lines-around-comment": [
"warn",
{
"beforeLineComment": false
}
],
"max-len": [
"error",
{
"code": 120
}
],
"vue/max-len": [
"error",
{
"code": 120,
"template": 240,
"tabWidth": 2
}
]
},
"globals": {
"_": true
}
}