You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
428 B
26 lines
428 B
import { defineConfig } from '@vben/oxfmt-config';
|
|
|
|
export default defineConfig({
|
|
ignorePatterns: [
|
|
'dist',
|
|
'dev-dist',
|
|
'.local',
|
|
'.claude',
|
|
'.agent',
|
|
'.agents',
|
|
'.codex',
|
|
'.output.js',
|
|
'node_modules',
|
|
'.nvmrc',
|
|
'coverage',
|
|
'CODEOWNERS',
|
|
'.nitro',
|
|
'.output',
|
|
'**/*.svg',
|
|
'**/*.sh',
|
|
'public',
|
|
'.npmrc',
|
|
'*-lock.yaml',
|
|
'skills-lock.json',
|
|
],
|
|
});
|
|
|