Skip to content

Commit

Permalink
Merge pull request #1438 from p-l-/update-gitignore
Browse files Browse the repository at this point in the history
Do not track the egg-info directory
  • Loading branch information
p-l- committed Oct 6, 2022
2 parents cfeeacb + 6beffbc commit e7d1df5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ jobs:
- run: rstcheck -r ./doc/
- run: if ! find ./doc/ -type f -name '*.rst' -print0 | xargs -0 grep '[[:space:]]$'; then echo "trailing spaces OK"; else echo "!! trailing spaces !!"; false; fi

- run: sphinx-lint -e all -d line-too-long ./doc/
- run: sphinx-lint -e all -d line-too-long -d default-role ./doc/
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ dist/
doc/_build
docker/base-local/ivre.tar
ivre/VERSION
ivre.egg-info/
tests/samples*
tests/htmlcov*
tests/.coverage
Expand Down
2 changes: 1 addition & 1 deletion pkg/runchecks
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ pylint -e all -d unused-argument,too-many-arguments,missing-function-docstring,m
rstcheck -r ./doc/ && echo "rstcheck OK"
if ! find ./doc/ -type f -name '*.rst' -print0 | xargs -0 grep '[[:space:]]$'; then echo "trailing spaces OK"; else echo "!! trailing spaces !!"; false; fi

sphinx-lint -e all -d line-too-long ./doc/ && echo "sphinx-lint OK"
sphinx-lint -e all -d line-too-long -d default-role ./doc/ && echo "sphinx-lint OK"

0 comments on commit e7d1df5

Please sign in to comment.