You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
addRule('neostandard/ts','@typescript-eslint/no-unsafe-argument','off')// allow passing argswith `any` type to functions
132
+
addRule('neostandard/ts','@typescript-eslint/no-unsafe-argument','off')// allow passing arg swith `any` type to functions
133
133
addRule('neostandard/ts','@typescript-eslint/unbound-method','off')// allow invoking functions that may be unbound (e.g. passed as part of an options object)
134
134
addRule('neostandard/ts','no-return-await','off')// disable this rule to use @typescript-eslint/return-await instead
135
135
addRule('neostandard/ts','@typescript-eslint/return-await',['error','in-try-catch'])// require awaiting thenables returned from try/catch
@@ -195,7 +195,7 @@ const jsdocConfig = {
195
195
'jsdoc/require-returns-check': 'error',
196
196
'jsdoc/require-returns-description': 'off',
197
197
// Note: At the moment type parser used by eslint-plugin-jsdoc does not
198
-
// parse various forms correctly. For now warn on invalid type froms,
198
+
// parse various forms correctly. For now warn on invalid type from,
0 commit comments