madhurjindal commited on
Commit
7630c31
·
verified ·
1 Parent(s): bf25b85

Create constants.py

Browse files
Files changed (1) hide show
  1. constants.py +33 -0
constants.py ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ file_extensions = [
2
+ # Source Code Files
3
+ ".py",
4
+ ".java",
5
+ ".cpp",
6
+ ".js",
7
+ ".ts",
8
+ ".go",
9
+ ".rb",
10
+ ".swift",
11
+ ".php",
12
+ ".perl",
13
+ ".pl",
14
+ ".scala",
15
+ ".kotlin",
16
+ ".rust",
17
+ ".lua",
18
+ ".vb",
19
+ ".cs",
20
+ ".fs",
21
+ # Documentation Files
22
+ ".md",
23
+ ".rst",
24
+ ".txt",
25
+ ".docx",
26
+ ".pdf",
27
+ ".html",
28
+ ".wiki",
29
+ # Configuration and Metadata Files
30
+ ".xml",
31
+ ".json",
32
+ ".gradle",
33
+ ]