diff --git a/ruff.toml b/ruff.toml index 4f533b8..77e8b76 100644 --- a/ruff.toml +++ b/ruff.toml @@ -8,6 +8,8 @@ lint.ignore = [ 'TCH', # Microoptimization at the cost of readability + 'D407', 'D413', # Weird documentation stuff + 'D100', 'D101', 'D102', 'D103', 'D104', 'D105', 'D106', 'D107', 'D300', 'D401', # Missing docstrings (lots of work) 'TD002', 'TD003', 'TD004', 'FIX', # Who cares about TODO standards? "E501", 'PLR0912', 'PTH123', 'F405', 'E402', 'PLW0603', @@ -19,7 +21,7 @@ lint.ignore = [ # Autofix lint.fixable = [ - 'SIM', 'C', 'Q', 'D', + 'SIM', 'C', 'Q', 'UP035', 'UP004', 'UP032', 'UP006', 'UP007', 'I001', 'F401', 'COM812', 'B011', 'PLR1722', 'PLR0402', 'S101', ]