Allow TS namespaces

This commit is contained in:
Oliver Günther
2024-08-30 09:47:14 +02:00
parent dd3a30570f
commit f2efebefeb
+3
View File
@@ -115,6 +115,9 @@ module.exports = {
"indent": "off",
"@typescript-eslint/indent": "off",
// Allow namespaces, they are generated into flat functions and we don't care about modules for helpers
"@typescript-eslint/no-namespace": "off",
/*
// Disable use before define, as irrelevant for TS interfaces
"no-use-before-define": "off",