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 cfea9fa commit e983bfeCopy full SHA for e983bfe
server/aws-lsp-codewhisperer/src/language-server/chat/constants.ts
@@ -50,7 +50,38 @@ export const DEFAULT_EXCLUDE_DIRS = [
50
'dist',
51
'build',
52
'out',
53
+ // Version control
54
'.git',
55
+ '.svn',
56
+ '.hg',
57
+ // IDE and Editor
58
+ '.idea',
59
+ '.vscode',
60
+ '.vs',
61
+ '.metals',
62
+ '.bloop',
63
+ '.ensime_cache',
64
+ '.project',
65
+ // Python Specific
66
+ '.venv',
67
+ 'venv',
68
+ '.virtualenv',
69
+ 'eggs',
70
+ '.eggs',
71
+ 'sdist',
72
+ '.ipynb_checkpoints',
73
+ // Environment and Config
74
+ '.env',
75
+ '.aws-sam',
76
+ '.brazil',
77
+ '.rvm',
78
+ '.gem',
79
+ // Cache and Temporary
80
+ '.cache',
81
+ '.sass-cache',
82
+ '.pytest_cache',
83
+ '__pycache__',
84
+ 'tmp',
85
]
86
87
export const DEFAULT_EXCLUDE_FILES = [
0 commit comments