diff --git a/pyproject.toml b/pyproject.toml index f546961..990da2c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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