17 lines
403 B
JavaScript
17 lines
403 B
JavaScript
|
|
import js from '@eslint/js'
|
||
|
|
import tseslint from 'typescript-eslint'
|
||
|
|
|
||
|
|
export default tseslint.config(
|
||
|
|
js.configs.recommended,
|
||
|
|
...tseslint.configs.recommended,
|
||
|
|
{
|
||
|
|
ignores: ['dist/**', 'node_modules/**', 'src/generated/**'],
|
||
|
|
},
|
||
|
|
{
|
||
|
|
rules: {
|
||
|
|
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
|
||
|
|
'@typescript-eslint/no-explicit-any': 'warn',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
)
|