fix(eslint-config): `no-unused-vars` as `warn` (#306)
* fix(eslint-config): `no-unused-vars` as `warn` * changesetpull/307/head
parent
8aabb93065
commit
165a415ec3
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@hono/eslint-config': patch
|
||||
---
|
||||
|
||||
fix: `no-unused-vars` as `warn`
|
|
@ -56,6 +56,7 @@ module.exports = defineConfig({
|
|||
'@typescript-eslint/no-empty-interface': 'off',
|
||||
'@typescript-eslint/no-explicit-any': 'warn',
|
||||
'@typescript-eslint/no-inferrable-types': 'off',
|
||||
'@typescript-eslint/no-unused-vars': 'warn',
|
||||
'@typescript-eslint/no-var-requires': 'off',
|
||||
'@typescript-eslint/consistent-type-imports': ['error', { prefer: 'type-imports' }],
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue