tyc-admin/eslint.config.mjs

13 lines
189 B
JavaScript
Raw Permalink Normal View History

2025-05-27 18:35:06 +08:00
// @ts-check
import { defineConfig } from '@vben/eslint-config';
export default defineConfig([
{
rules: {
'no-console': 'off',
'no-unused-vars': 'warn',
},
},
]);