Skip to content

Commit

Permalink
Modernize .gitattributes and .gitignore (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
drhagen authored Jun 23, 2023
1 parent 7508e59 commit 5a6441a
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 22 deletions.
15 changes: 5 additions & 10 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
* text=auto
* text=auto

# General
*.txt text
*.md text
*.html text
*.xml text
*.c text

# Python
*.py text
*.py text
*.md text
*.yml text
*.toml text
35 changes: 23 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
.idea
__pycache__
.cache
.pytest_cache
.nox
parsita.egg-info
.coverage*
htmlcov
coverage.xml
build
dist
site
# python
**/__pycache__

# poetry
/.venv
/dist

# nox
/.nox

# pytest
**/.pytest_cache

# coverage
/.coverage*
/htmlcov
/coverage.xml

# ruff
/.ruff_cache

# mkdocs
/site

0 comments on commit 5a6441a

Please sign in to comment.