Skip to content

Commit

Permalink
allow capital variables (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerkuou authored Jan 10, 2025
1 parent 80ea1e9 commit cc03e47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ lint.select = [
"PLE", # Pylint error https://github.com/charliermarsh/ruff#error-ple
]
lint.ignore = [
"D100", "D101", "D104", "D105", "D106", "D107", "D203", "D213", "D413"
"D100", "D101", "D104", "D105", "D106", "D107", "D203", "D213", "D413",
"N806" # Allow capital letters in variables
] # docstring style

line-length = 120
Expand Down

0 comments on commit cc03e47

Please sign in to comment.