scinote-web/app/assets/.eslintrc.json
Gregor Lasnibat 7a6b4ed359 Fix ESLint config/install v.01 [SCI-9306]
Added yarn.lock [SCI-9306]
2023-09-19 09:27:29 +02:00

26 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 }]
}
}