Skip to content

Commit 7e05782

Browse files
Merge pull request #133 from geertmeersman/dev-current
refactor: lint
2 parents e3d14ba + c2ce4d5 commit 7e05782

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.ruff.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
target-version = "py310"
44

5-
select = [
5+
lint.select = [
66
"B007", # Loop control variable {name} not used within loop body
77
"B014", # Exception handler with duplicate exception
88
"C", # complexity
@@ -26,7 +26,7 @@ select = [
2626
"W", # pycodestyle
2727
]
2828

29-
ignore = [
29+
lint.ignore = [
3030
"D202", # No blank lines allowed after function docstring
3131
"D203", # 1 blank line required before class docstring
3232
"D213", # Multi-line docstring summary should start at the second line
@@ -39,8 +39,8 @@ ignore = [
3939
"E731", # do not assign a lambda expression, use a def
4040
]
4141

42-
[flake8-pytest-style]
42+
[lint.flake8-pytest-style]
4343
fixture-parentheses = false
4444

45-
[mccabe]
45+
[lint.mccabe]
4646
max-complexity = 40

0 commit comments

Comments
 (0)