| 1234567891011121314151617 |
- import type { OxlintConfig } from 'oxlint';
- const ignores: OxlintConfig = {
- ignorePatterns: [
- '**/dist/**',
- '**/node_modules/**',
- 'docs/**',
- 'playground/public/**',
- '**/*.json',
- '**/*.md',
- '**/*.svg',
- '**/*.yaml',
- '**/*.yml',
- ],
- };
- export { ignores };
|