Skip to content

Commit c614af4

Browse files
Merge pull request #483 from afuetterer/gitignore
chore: reorder .gitignore
2 parents 2682864 + 80a76a2 commit c614af4

1 file changed

Lines changed: 22 additions & 11 deletions

File tree

.gitignore

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -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
1+
# IDE and project files
2+
.project
3+
.pydevproject
124
.idea
5+
.settings/
6+
7+
# Python build and distribution
8+
build/
9+
dist/
10+
*.pyc
1311
__pycache__/
12+
tika.egg-info
13+
14+
# Logs and coverage
15+
*.log
1416
.coverage
17+
18+
# macOS metadata
19+
.DS_Store
20+
21+
# Configuration
22+
setup.cfg
23+
24+
# Sphinx documentation
25+
docs/build/

0 commit comments

Comments
 (0)