1
1
[tool .ruff ]
2
2
select = [
3
- " C4" , # flake8-comprehensions
4
- " C90" , # mccabe
5
- " E" , # pycodestyle
6
- " F" , # Pyflakes
7
- " I" , # isort
8
- " ICN" , # flake8-import-conventions
9
- " PGH" , # pygrep-hooks
10
- " PIE" , # flake8-pie
11
- " PLC" , # Pylint conventions
12
- " PLE" , # Pylint errors
13
- " PLR091" , # Pylint refactor just for max-args, max-branches, etc.
14
- " PYI" , # flake8-pyi
15
- " RSE" , # flake8-raise
16
- " RUF" , # Ruff-specific rules
17
- " T10" , # flake8-debugger
18
- " TCH" , # flake8-type-checking
19
- " TID" , # flake8-tidy-imports
20
- " UP" , # pyupgrade
21
- " W" , # pycodestyle
22
- " YTT" , # flake8-2020
3
+ " C4" , # flake8-comprehensions
4
+ " C90" , # mccabe
5
+ " E" , # pycodestyle
6
+ " F" , # Pyflakes
7
+ " I" , # isort
8
+ " ICN" , # flake8-import-conventions
9
+ " PGH" , # pygrep-hooks
10
+ " PIE" , # flake8-pie
11
+ " PLC" , # Pylint conventions
12
+ " PLE" , # Pylint errors
13
+ " PLR091" , # Pylint refactor just for max-args, max-branches, etc.
14
+ " PYI" , # flake8-pyi
15
+ " RSE" , # flake8-raise
16
+ " RUF" , # Ruff-specific rules
17
+ " T10" , # flake8-debugger
18
+ " TCH" , # flake8-type-checking
19
+ " TID" , # flake8-tidy-imports
20
+ " UP" , # pyupgrade
21
+ " W" , # pycodestyle
22
+ " YTT" , # flake8-2020
23
23
]
24
24
ignore = [
25
25
" E402" ,
@@ -43,7 +43,9 @@ max-branches = 18
43
43
max-statements = 73
44
44
45
45
[tool .ruff .per-file-ignores ]
46
- "test/*" = [" S101" ]
46
+ "test/*" = [
47
+ " S101" ,
48
+ ]
47
49
48
50
[tool .codespell ]
49
51
ignore-words-list = ' didnt'
0 commit comments