Skip to content

Commit a8812f6

Browse files
committed
chore: fix spelling
1 parent 7ceebba commit a8812f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

eslint.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ addRule('neostandard/ts', '@typescript-eslint/no-this-alias', 'off') // allow 'c
129129
addRule('neostandard/ts', '@typescript-eslint/await-thenable', 'error') // disallows awaiting a value that is not a "Thenable"
130130
addRule('neostandard/ts', '@typescript-eslint/restrict-template-expressions', 'off') // allow values with `any` type in template literals
131131
addRule('neostandard/ts', '@typescript-eslint/method-signature-style', ['error', 'method']) // enforce method signature style
132-
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
133133
addRule('neostandard/ts', '@typescript-eslint/unbound-method', 'off') // allow invoking functions that may be unbound (e.g. passed as part of an options object)
134134
addRule('neostandard/ts', 'no-return-await', 'off') // disable this rule to use @typescript-eslint/return-await instead
135135
addRule('neostandard/ts', '@typescript-eslint/return-await', ['error', 'in-try-catch']) // require awaiting thenables returned from try/catch
@@ -195,7 +195,7 @@ const jsdocConfig = {
195195
'jsdoc/require-returns-check': 'error',
196196
'jsdoc/require-returns-description': 'off',
197197
// 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,
199199
// should revisit once following issue is fixed:
200200
// https://github.com/jsdoctypeparser/jsdoctypeparser/issues/50
201201
'jsdoc/valid-types': 'off',

0 commit comments

Comments
 (0)