Skip to content

Commit

Permalink
allow capital variables (#40)
Browse files Browse the repository at this point in the history
rogerkuou authored Jan 10, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
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
@@ -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

0 comments on commit cc03e47

Please sign in to comment.