15 lines
386 B
JavaScript
15 lines
386 B
JavaScript
import tseslint from 'typescript-eslint';
|
|
|
|
export default tseslint.config(
|
|
{ ignores: ['dist', 'coverage', 'node_modules'] },
|
|
...tseslint.configs.recommended,
|
|
{
|
|
rules: {
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
'@typescript-eslint/no-namespace': 'off',
|
|
'max-len': ['warn', { code: 120 }],
|
|
},
|
|
},
|
|
);
|