@@ -74,9 +74,7 @@ export default defineConfigWithVueTs(
7474 // dont want this
7575 "@typescript-eslint/consistent-type-imports" : 0 ,
7676 "import/named" : 0 ,
77-
78- // warning on this because we have some shenanigans where it is a promise but a literal `await` is not present
79- "@typescript-eslint/require-await" : "warn" ,
77+ "@typescript-eslint/require-await" : 0 ,
8078
8179 // "prettier/prettier": "warn",
8280 "@typescript-eslint/quotes" : 0 ,
@@ -103,10 +101,11 @@ export default defineConfigWithVueTs(
103101 "no-await-in-loop" : 0 ,
104102 "no-lonely-if" : 0 ,
105103 "@typescript-eslint/no-unused-vars" : [
106- "warn " ,
104+ "error " ,
107105 {
108106 argsIgnorePattern : "^_|^(response)$" ,
109107 varsIgnorePattern : "^_|^(props|emit)$" ,
108+ caughtErrorsIgnorePattern : "^_" ,
110109 } ,
111110 ] ,
112111 "@typescript-eslint/return-await" : 0 ,
@@ -116,7 +115,7 @@ export default defineConfigWithVueTs(
116115 // curly: ["error", "multi-line"],
117116 // "brace-style": "error",
118117 "max-len" : [
119- "warn " , // just a warning since prettier will enforce
118+ "off " , // prettier will enforce
120119 120 ,
121120 2 ,
122121 {
@@ -167,9 +166,9 @@ export default defineConfigWithVueTs(
167166 "@typescript-eslint/no-shadow" : 0 ,
168167 "guard-for-in" : 0 ,
169168
169+ "no-console" : "error" ,
170170 // some rules to downgrade to warning while developing --------------------
171171 // useful so things dont crash when code is temporarily commented out
172- "no-console" : "warn" ,
173172 "@typescript-eslint/no-empty-function" : "warn" ,
174173 "no-debugger" : "warn" ,
175174 "no-alert" : "warn" ,
@@ -192,6 +191,12 @@ export default defineConfigWithVueTs(
192191 // useful while debugging and commenting things out, otherwise gets automatically changed from let to const
193192 // "no-autofix/prefer-const": "warn",
194193
194+ // not clear to me why we have these problems
195+ "import/no-named-as-default" : 0 ,
196+ "import/no-named-as-default-member" : 0 ,
197+
198+ "@typescript-eslint/no-empty-function" : 0 ,
199+
195200 "vue/block-order" : [
196201 "error" ,
197202 {
0 commit comments