mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 01:44:34 +08:00
43 lines
663 B
JSON
43 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
|
|
}
|
|
}
|