Skip to content

Commit

Permalink
chore: Include .pdm-build/ in gitignore and make clean. (#261)
Browse files Browse the repository at this point in the history
  • Loading branch information
huxuan committed Dec 28, 2023
1 parent 060a60f commit 61cf06b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -2,8 +2,9 @@
*.swp
.DS_Store
.copier-answers.yml
# TODO: Move `.pdm-python` out of custom section when upstream pull request merged.
# TODO: Move `.pdm-build/` and `.pdm-python` out of custom section when upstream pull request merged.
# Reference: https://github.com/github/gitignore/pull/4279
.pdm-build/
.pdm-python
Pipfile
public
Expand Down
1 change: 1 addition & 0 deletions Makefile
Expand Up @@ -25,6 +25,7 @@ clean:
.copier-answers.yml \
.coverage \
.mypy_cache \
.pdm-build \
.pdm-python \
.pytest_cache \
.ruff_cache \
Expand Down
3 changes: 2 additions & 1 deletion template/.gitignore.jinja
Expand Up @@ -4,8 +4,9 @@
[%- if project_name == "Serious Scaffold Python" %]
.copier-answers.yml
[%- endif %]
# TODO: Move `.pdm-python` out of custom section when upstream pull request merged.
# TODO: Move `.pdm-build/` and `.pdm-python` out of custom section when upstream pull request merged.
# Reference: https://github.com/github/gitignore/pull/4279
.pdm-build/
.pdm-python
Pipfile
public
Expand Down
1 change: 1 addition & 0 deletions template/Makefile.jinja
Expand Up @@ -28,6 +28,7 @@ clean:
[%- endif %]
.coverage \
.mypy_cache \
.pdm-build \
.pdm-python \
.pytest_cache \
.ruff_cache \
Expand Down

0 comments on commit 61cf06b

Please sign in to comment.