tydata-admin/eslint.config.mjs

13 lines
189 B
JavaScript
Raw Permalink Normal View History

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