fixup! Allow dangling underscore for _destroy

45001-component-to-show-the-list-of-non-working-days-of-year
Dombi Attila 2 years ago
parent 51f052f990
commit eb78edfba1
  1. 2
      frontend/.eslintrc.js

@ -67,7 +67,6 @@ module.exports = {
// Sometimes we need to shush the TypeScript compiler
"no-unused-vars": ["error", { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_" }],
"no-underscore-dangle": ["error", { "allow": ["_destroy"] }],
"@typescript-eslint/no-unused-vars": ["error", { "varsIgnorePattern": "^_", "argsIgnorePattern": "^_" }],
// Who cares about line length
@ -141,6 +140,7 @@ module.exports = {
"_embedded",
"_meta",
"_type",
"_destroy",
],
allowAfterThis: true,
allowAfterSuper: false,

Loading…
Cancel
Save