File tree Expand file tree Collapse file tree 2 files changed +61
-0
lines changed
Expand file tree Collapse file tree 2 files changed +61
-0
lines changed Original file line number Diff line number Diff line change 2121 ".npm" ,
2222 ".yarn" ,
2323 ".pnpm-store" ,
24+ # Java
25+ "*.class" ,
26+ "*.jar" ,
27+ "*.war" ,
28+ "*.ear" ,
29+ "*.nar" ,
30+ "target/" ,
31+ ".gradle/" ,
32+ "build/" ,
33+ ".settings/" ,
34+ ".project" ,
35+ ".classpath" ,
36+ "gradle-app.setting" ,
37+ "*.gradle" ,
38+ # C/C++
39+ "*.o" ,
40+ "*.obj" ,
41+ "*.so" ,
42+ "*.dll" ,
43+ "*.dylib" ,
44+ "*.exe" ,
45+ "*.lib" ,
46+ "*.out" ,
47+ "*.a" ,
48+ "*.pdb" ,
49+ # Swift/Xcode
50+ ".build/" ,
51+ "*.xcodeproj/" ,
52+ "*.xcworkspace/" ,
53+ "*.pbxuser" ,
54+ "*.mode1v3" ,
55+ "*.mode2v3" ,
56+ "*.perspectivev3" ,
57+ "*.xcuserstate" ,
58+ "xcuserdata/" ,
59+ ".swiftpm/" ,
60+ # Ruby
61+ "*.gem" ,
62+ ".bundle/" ,
63+ "vendor/bundle" ,
64+ "Gemfile.lock" ,
65+ ".ruby-version" ,
66+ ".ruby-gemset" ,
67+ ".rvmrc" ,
68+ # Rust
69+ "target/" ,
70+ "Cargo.lock" ,
71+ "**/*.rs.bk" ,
72+ # Go
73+ "bin/" ,
74+ "pkg/" ,
75+ # .NET/C#
76+ "bin/" ,
77+ "obj/" ,
78+ "*.suo" ,
79+ "*.user" ,
80+ "*.userosscache" ,
81+ "*.sln.docstates" ,
82+ "packages/" ,
83+ "*.nupkg" ,
2484 # Version control
2585 ".git" ,
2686 ".svn" ,
Original file line number Diff line number Diff line change 66
77from gitingest .ignore_patterns import DEFAULT_IGNORE_PATTERNS
88
9+
910TMP_BASE_PATH = "../tmp"
1011HEX_DIGITS = set (string .hexdigits )
1112
You can’t perform that action at this time.
0 commit comments