mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 13:45:25 +08:00
7a6b4ed359
Added yarn.lock [SCI-9306]
25 lines
442 B
JSON
25 lines
442 B
JSON
{
|
|
"env": {
|
|
"browser": true,
|
|
"jquery": true
|
|
},
|
|
"extends": ["airbnb"],
|
|
"rules": {
|
|
"space-before-function-paren": ["error", "never"],
|
|
"func-names": ["error", "never"],
|
|
"spaced-comment": [
|
|
"error",
|
|
"always",
|
|
{
|
|
"markers": ["="]
|
|
}
|
|
],
|
|
"lines-around-comment": [
|
|
"warn",
|
|
{
|
|
"beforeLineComment": false
|
|
}
|
|
],
|
|
"max-len": ["error", { "code": 120 }]
|
|
}
|
|
}
|