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.
2 parents 2682864 + 80a76a2 commit c614af4Copy full SHA for c614af4
1 file changed
.gitignore
@@ -1,14 +1,25 @@
1
-/.project
2
-/.pydevproject
3
-/tika.egg-info
4
-/build
5
-/dist
6
-*.log
7
-/.settings/
8
-/tika/*.pyc
9
-/tika/*/*.pyc
10
-.DS_Store
11
-/setup.cfg
+# IDE and project files
+.project
+.pydevproject
12
.idea
+.settings/
+
+# Python build and distribution
+build/
+dist/
+*.pyc
13
__pycache__/
+tika.egg-info
14
+# Logs and coverage
15
+*.log
16
.coverage
17
18
+# macOS metadata
19
+.DS_Store
20
21
+# Configuration
22
+setup.cfg
23
24
+# Sphinx documentation
25
+docs/build/
0 commit comments