Skip to content

Commit f7cda80

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent b3ce1f7 commit f7cda80

File tree

1 file changed

+23
-21
lines changed

1 file changed

+23
-21
lines changed

pyproject.toml

+23-21
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
[tool.ruff]
22
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
2323
]
2424
ignore = [
2525
"E402",
@@ -43,7 +43,9 @@ max-branches = 18
4343
max-statements = 73
4444

4545
[tool.ruff.per-file-ignores]
46-
"test/*" = ["S101"]
46+
"test/*" = [
47+
"S101",
48+
]
4749

4850
[tool.codespell]
4951
ignore-words-list = 'didnt'

0 commit comments

Comments
 (0)