Skip to content

Commit

Permalink
chore: fix lint config
Browse files Browse the repository at this point in the history
  • Loading branch information
missytake committed Apr 11, 2024
1 parent 929d9be commit 15d8cd7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools_scm"]
build-backend = "setuptools.build_meta"

[tool.ruff]
select = [
lint.select = [
"E", "W", # pycodestyle
"F", # Pyflakes
"N", # pep8-naming
Expand All @@ -24,7 +24,7 @@ select = [
"PLE", # Pylint Error
"PLW", # Pylint Warning
]
ignore = ["PT001", "PT016", "PT011"]
lint.ignore = ["PT001", "PT016", "PT011"]
line-length = 100

[tool.black]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ deps =
black
commands =
rst-lint README.rst CHANGELOG.rst doc/index.rst
ruff src/ tests/
ruff check src/ tests/
black --check --diff src/ tests/

[testenv:check-manifest]
Expand Down

0 comments on commit 15d8cd7

Please sign in to comment.