Files
tyass-admin/eslint.config.mjs

13 lines
189 B
JavaScript
Raw Permalink Normal View History

2026-02-27 12:29:13 +08:00
// @ts-check
import { defineConfig } from '@vben/eslint-config';
export default defineConfig([
{
rules: {
'no-console': 'off',
'no-unused-vars': 'warn',
},
},
]);