Skip to content

Commit af53dce

Browse files
authored
Merge branch 'main' into chore/modernize-code-style
2 parents eb593e5 + 3c5e7e9 commit af53dce

File tree

2 files changed

+61
-0
lines changed

2 files changed

+61
-0
lines changed

src/gitingest/ignore_patterns.py

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,66 @@
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",

src/gitingest/parse_query.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
from gitingest.ignore_patterns import DEFAULT_IGNORE_PATTERNS
88

9+
910
TMP_BASE_PATH = "../tmp"
1011
HEX_DIGITS = set(string.hexdigits)
1112

0 commit comments

Comments
 (0)