mirror of
https://github.com/imdap/ruoyi-plus-vben5.git
synced 2026-04-23 00:38:34 +08:00
14 lines
301 B
TypeScript
14 lines
301 B
TypeScript
import type { Linter } from 'eslint';
|
|
|
|
export async function disableds(): Promise<Linter.Config[]> {
|
|
return [
|
|
{
|
|
files: ['**/*.js', '**/*.mjs', '**/*.cjs'],
|
|
name: 'disables/js',
|
|
rules: {
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off',
|
|
},
|
|
},
|
|
];
|
|
}
|