We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 080e592 commit 8ad8de3Copy full SHA for 8ad8de3
src/utils/fileTraversal.ts
@@ -3,15 +3,23 @@ import path from 'path';
3
import ignore, { Ignore } from 'ignore';
4
5
const DEFAULT_IGNORE_PATTERNS = [
6
- 'node_modules',
7
- 'dist',
8
- 'build',
9
- '.git',
10
- '.svn',
11
- '.hg',
+ 'node_modules/',
+ 'dist/',
+ 'build/',
+ '.git/',
+ '.svn/',
+ '.hg/',
12
+ '.next/',
13
+ '.vscode/',
14
+ '.cache/',
15
+ 'coverage/',
16
+ '.vite/',
17
+ '.svelte-kit/',
18
+ '__pycache__/',
19
'*.log',
20
'*.lock',
21
'*.swp',
22
+ '*.pyc',
23
'.DS_Store',
24
'Thumbs.db',
25
// Add other common ignores if needed
0 commit comments