engelsystem/.eslintrc.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
363 B
JSON
Raw Normal View History

2022-11-26 14:50:15 +01:00
{
"parser": "@babel/eslint-parser",
"extends": [ "plugin:editorconfig/all" ],
"plugins": [ "editorconfig" ],
"rules": {
"function-paren-newline": "error",
2022-11-29 21:47:26 +01:00
"prefer-arrow-callback": "error",
"prefer-template": "error",
2022-11-26 14:50:15 +01:00
"no-var": "error",
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
]
}
}