Skip to content

Commit

Permalink
Add ruff exclusions to pyproject.toml (pylint-dev#2537)
Browse files Browse the repository at this point in the history
This makes it easier to run 'ruff check' outside of the pre-commit
hook.

Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com>
  • Loading branch information
correctmost and Pierre-Sassoulas authored Sep 4, 2024
1 parent 78f7f60 commit 6deb34f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ repos:
rev: "v0.6.3"
hooks:
- id: ruff
exclude: tests/testdata
args: ["--fix"]
- repo: https://github.com/Pierre-Sassoulas/copyright_notice_precommit
rev: 0.1.2
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ ignore_missing_imports = true
[tool.ruff]
target-version = "py39"

exclude = ["tests/testdata/"]

# ruff is less lenient than pylint and does not make any exceptions
# (for docstrings, strings and comments in particular).
line-length = 110
Expand Down

0 comments on commit 6deb34f

Please sign in to comment.