admin-vben/internal/lint-configs/eslint-config/src/configs/disableds.ts

29 lines
658 B
TypeScript
Raw Normal View History

2024-06-01 14:17:52 +00:00
import type { Linter } from 'eslint';
export async function disableds(): Promise<Linter.FlatConfig[]> {
return [
{
files: ['**/__tests__/**/*.?([cm])[jt]s?(x)'],
name: 'disables/test',
rules: {
'@typescript-eslint/ban-ts-comment': 'off',
'no-console': 'off',
},
},
{
files: ['**/*.d.ts'],
name: 'disables/dts',
rules: {
'@typescript-eslint/triple-slash-reference': 'off',
},
},
{
files: ['**/*.js', '**/*.mjs', '**/*.cjs'],
name: 'disables/js',
rules: {
'@typescript-eslint/explicit-module-boundary-types': 'off',
},
},
];
}