ignores.ts 294 B

1234567891011121314151617
  1. import type { OxlintConfig } from 'oxlint';
  2. const ignores: OxlintConfig = {
  3. ignorePatterns: [
  4. '**/dist/**',
  5. '**/node_modules/**',
  6. 'docs/**',
  7. 'playground/public/**',
  8. '**/*.json',
  9. '**/*.md',
  10. '**/*.svg',
  11. '**/*.yaml',
  12. '**/*.yml',
  13. ],
  14. };
  15. export { ignores };