13 lines
189 B
JavaScript
13 lines
189 B
JavaScript
// @ts-check
|
|
|
|
import { defineConfig } from '@vben/eslint-config';
|
|
|
|
export default defineConfig([
|
|
{
|
|
rules: {
|
|
'no-console': 'off',
|
|
'no-unused-vars': 'warn',
|
|
},
|
|
},
|
|
]);
|