@@ -66,49 +66,48 @@ module-name = "taskiq_litestar"
6666[tool .ruff ]
6767# List of enabled rulsets.
6868# See https://docs.astral.sh/ruff/rules/ for more information.
69- line-length = 88
70-
7169lint.select = [
72- " E" , # Error
73- " F" , # Pyflakes
74- " W" , # Pycodestyle
70+ " E" , # Error
71+ " F" , # Pyflakes
72+ " W" , # Pycodestyle
7573 " C90" , # McCabe complexity
76- " I" , # Isort
77- " N" , # pep8-naming
78- " D" , # Pydocstyle
74+ " I" , # Isort
75+ " N" , # pep8-naming
76+ " D" , # Pydocstyle
7977 " ANN" , # Pytype annotations
80- " S" , # Bandit
81- " B" , # Bugbear
78+ " S" , # Bandit
79+ " B" , # Bugbear
8280 " COM" , # Commas
83- " C4" , # Comprehensions
81+ " C4" , # Comprehensions
8482 " ISC" , # Implicit string concat
8583 " PIE" , # Unnecessary code
8684 " T20" , # Catch prints
8785 " PYI" , # validate pyi files
88- " Q" , # Checks for quotes
86+ " Q" , # Checks for quotes
8987 " RSE" , # Checks raise statements
9088 " RET" , # Checks return statements
9189 " SLF" , # Self checks
9290 " SIM" , # Simplificator
9391 " PTH" , # Pathlib checks
9492 " ERA" , # Checks for commented out code
95- " PL" , # PyLint checks
93+ " PL" , # PyLint checks
9694 " RUF" , # Specific to Ruff checks
9795 " FA102" , # Future annotations
98- " UP" , # Pyupgrade
96+ " UP" , # Pyupgrade
9997]
10098lint.ignore = [
101- " D105" , # Missing docstring in magic method
102- " D107" , # Missing docstring in __init__
103- " D212" , # Multi-line docstring summary should start at the first line
104- " D401" , # First line should be in imperative mood
105- " D104" , # Missing docstring in public package
106- " D100" , # Missing docstring in public module
107- " ANN401" , # typing.Any are disallowed in `**kwargs
99+ " D105" , # Missing docstring in magic method
100+ " D107" , # Missing docstring in __init__
101+ " D212" , # Multi-line docstring summary should start at the first line
102+ " D401" , # First line should be in imperative mood
103+ " D104" , # Missing docstring in public package
104+ " D100" , # Missing docstring in public module
105+ " ANN401" , # typing.Any are disallowed in `**kwargs
108106 " PLR0913" , # Too many arguments for function call
109- " D106" , # Missing docstring in public nested class
107+ " D106" , # Missing docstring in public nested class
110108]
111109exclude = [" .venv/" ]
110+ line-length = 88
112111
113112[tool .ruff .lint .mccabe ]
114113max-complexity = 10
0 commit comments