Skip to content

Commit 9f57c7b

Browse files
committed
A few cleanups to toml format. alphabetize, whitespace...
Using: pretty-toml-sort with --spaces-indent-inline-array 4 then editing the result to keep blank lines inside sections and some comments that it was stripping.
1 parent 5322210 commit 9f57c7b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ ignore = [
100100
"SIM105",
101101
]
102102

103+
[tool.ruff.lint.mccabe]
104+
max-complexity = 50
103105

104106
[tool.ruff.lint.per-file-ignores]
105107
"roundup/anypy/*.py" = ["RET505", "RET506"]
@@ -108,12 +110,10 @@ ignore = [
108110
"roundup/support.py" = ["E401"]
109111
"roundup/security.py" = ["E701"]
110112
"roundup/date.py" = ["E231", "E701"]
111-
"roundup/backends/back_sqlite.py" = [ "E203" ]
113+
"roundup/backends/back_sqlite.py" = ["E203"]
112114

113-
[too.ruff.lint.pylint]
115+
[tool.ruff.lint.pylint]
114116
max-args = 6
115-
max-branches=20
117+
max-branches = 20
116118
max-statements = 100
117119

118-
[tool.ruff.lint.mccabe]
119-
max-complexity = 50

0 commit comments

Comments
 (0)