Skip to content

Commit

Permalink
lint: fix lint errors (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry authored Dec 11, 2023
1 parent 340affb commit 751172a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
cd ${{ matrix.context.project_name }}
echo "::group::tree" && tree -a && echo "::endgroup::"
echo "::group::.cruft.json" && cat .cruft.json && echo "::endgroup::"
echo "::group::setup.cfg" && cat setup.cfg && echo "::endgroup::"
echo "::group::pyproject.toml" && cat pyproject.toml && echo "::endgroup::"
echo "::group::CONTRIBUTING.rst" && cat CONTRIBUTING.rst && echo "::endgroup::"
echo "::group::noxfile.py" && cat noxfile.py && echo "::endgroup::"
echo "::group::tests.yml" && cat .github/workflows/tests.yml && echo "::endgroup::"
Expand Down
3 changes: 2 additions & 1 deletion {{cookiecutter.project_name}}/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ show-source = true
show-fixes = true

[tool.ruff.per-file-ignores]
"tests/**" = ["S", "ARG001", "ARG002"]
"noxfile.py" = ["D", "PTH"]
"tests/**" = ["S", "ARG001", "ARG002", "ANN"]
{%- if cookiecutter.docs %}
"docs/**" = ["INP"]
{%- endif %}
Expand Down

0 comments on commit 751172a

Please sign in to comment.