engelsystem/.eslintrc.json

11 lines
234 B
JSON
Raw Normal View History

2022-11-26 14:50:15 +01:00
{
"parser": "@babel/eslint-parser",
2024-01-29 11:17:58 +01:00
"extends": ["plugin:editorconfig/all", "prettier"],
"plugins": ["editorconfig"],
2022-11-26 14:50:15 +01:00
"rules": {
2022-11-29 21:47:26 +01:00
"prefer-arrow-callback": "error",
"prefer-template": "error",
2024-01-29 11:17:58 +01:00
"no-var": "error"
2022-11-26 14:50:15 +01:00
}
}