Skip to content

Commit

Permalink
Update lint configuration in pyproject.toml (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
domna authored Feb 21, 2024
1 parent 2724a65 commit 44e2937
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@ local_scheme = "node-and-date"

[tool.ruff]
include = ["pynxtools/*.py", "tests/*.py"]
select = [
lint.select = [
"E", # pycodestyle
"W", # pycodestyle
"PL", # pylint
]
ignore = [
lint.ignore = [
"E501", # Line too long ({width} > {limit} characters)
"E701", # Multiple statements on one line (colon)
"E731", # Do not assign a lambda expression, use a def
Expand All @@ -107,7 +107,7 @@ ignore = [
"PLR1714", # consider-using-in
"PLR5501", # else-if-used
]
fixable = ["ALL"]
lint.fixable = ["ALL"]
exclude = ["pynxtools/definitions/*"]

[tool.mypy]
Expand Down

0 comments on commit 44e2937

Please sign in to comment.