diff --git a/packages/eslint-plugin/index.js b/packages/eslint-plugin/index.js index 80a9f071d..9c517482d 100644 --- a/packages/eslint-plugin/index.js +++ b/packages/eslint-plugin/index.js @@ -25,6 +25,7 @@ const base = { 'simple-import-sort', 'unused-imports', '@cspell', + '@typescript-eslint', ], rules: { @@ -54,6 +55,12 @@ const base = { autoFix: false, }, ], + '@typescript-eslint/no-unused-vars': [ + 'warn', + { + argsIgnorePattern: '^_', + }, + ], }, settings: {