diff --git a/.gitattributes b/.gitattributes index 7e828f0..d215ade 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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 diff --git a/.gitignore b/.gitignore index a57f96a..8e20198 100644 --- a/.gitignore +++ b/.gitignore @@ -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