Files
bolt.new/app/constants/ignorePatterns.ts
Dustin Loring f54535e534 chore: reused ignore patterns
reused ignore patterns for importing
2025-01-17 12:28:23 -05:00

27 lines
478 B
TypeScript

export const IGNORE_PATTERNS = [
'node_modules/**',
'.git/**',
'.github/**',
'.vscode/**',
'dist/**',
'build/**',
'.next/**',
'coverage/**',
'.cache/**',
'.vscode/**',
'.idea/**',
'**/*.log',
'**/.DS_Store',
'**/npm-debug.log*',
'**/yarn-debug.log*',
'**/yarn-error.log*',
'**/npm-debug.log*',
'**/yarn-debug.log*',
'**/yarn-error.log*',
'**/*lock.json',
'**/*lock.yaml',
// Binary files
'**/*.jpg',
'**/*.jpeg',
'**/*.png',
];