engelsystem/.eslintrc.json

18 lines
324 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": {
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
}
]
}
}