Skip to content

Commit

Permalink
ignore all ruff rules
Browse files Browse the repository at this point in the history
  • Loading branch information
ahms5 committed Dec 12, 2024
1 parent c18cf79 commit abf7301
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,23 +94,23 @@ lint.ignore = [
"PT019", # Fixture `_` without value is injected as parameter
]
lint.select = [
"B", # bugbear extension
"ARG", # Remove unused function/method arguments
"C4", # Check for common security issues
"E", # PEP8 errors
"F", # Pyflakes
"W", # PEP8 warnings
"D", # Docstring guidelines
"NPY", # Check all numpy related deprecations
"D417", # Missing argument descriptions in the docstring
"PT", # Pytest style
"A", # Avoid builtin function and type shadowing
"ERA", # No commented out code
"NPY", # Check all numpy related deprecations
"COM", # trailing comma rules
"I002", # missing required import
"TID252", # Use absolute over relative imports
"FIX", # Code should not contain FIXME, TODO, etc
# "B", # bugbear extension
# "ARG", # Remove unused function/method arguments
# "C4", # Check for common security issues
# "E", # PEP8 errors
# "F", # Pyflakes
# "W", # PEP8 warnings
# "D", # Docstring guidelines
# "NPY", # Check all numpy related deprecations
# "D417", # Missing argument descriptions in the docstring
# "PT", # Pytest style
# "A", # Avoid builtin function and type shadowing
# "ERA", # No commented out code
# "NPY", # Check all numpy related deprecations
# "COM", # trailing comma rules
# "I002", # missing required import
# "TID252", # Use absolute over relative imports
# "FIX", # Code should not contain FIXME, TODO, etc
]

# Ignore missing docstrings in tests
Expand Down

0 comments on commit abf7301

Please sign in to comment.