Skip to content

Commit

Permalink
activate pep8-naming rule
Browse files Browse the repository at this point in the history
  • Loading branch information
zariiii9003 committed Oct 19, 2023
1 parent 36cb1b1 commit 0b809b4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ select = [
"G", # flake8-logging-format
"I", # isort
"ISC", # flake8-implicit-str-concat
"N", # pep8-naming
"PIE", # flake8-pie
"PL", # pylint
"RSE", # flake8-raise
Expand All @@ -106,6 +107,9 @@ ignore = [
]

[tool.ruff.per-file-ignores]
"src/pycanape/cnp_api/**/*.py" = [
"N", # names are mostly equal to CANapAPI.h
]
"tests/**/*.py" = [
"S101", # asserts allowed in tests...
"ARG", # Unused function args -> fixtures nevertheless are functionally relevant
Expand Down

0 comments on commit 0b809b4

Please sign in to comment.