Skip to content

Commit d0307e7

Browse files
authored
silence some new ruff lints (#350)
1 parent c5f0835 commit d0307e7

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

spec/API_specification/pyproject.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,16 @@ line-length = 90
2222
fix = true
2323
target-version = "py39"
2424

25-
select = [
25+
lint.select = [
2626
"ALL",
2727
]
28-
ignore = [
28+
lint.ignore = [
2929
"A003", # builtin-attribute-shadowing
3030
"ARG001", # unused-function-argument
3131
"ANN101", # missing-type-function-argument
3232
"ANN102", # missing-type-cls
3333
"ANN401", # any-type
34+
"COM812", # missing-trailing-comma
3435
"D100", # undocumented-public-module
3536
"D101", # undocumented-public-class
3637
"D102", # undocumented-public-method
@@ -41,10 +42,13 @@ ignore = [
4142
"D107", # undocumented-public-init
4243
"D203", # one-blank-line-before-class
4344
"D213", # multi-line-summary-second-line
45+
"D413", # no-blank-line-after-section
4446
"D417", # undocumented-param
4547
"EM101", # raw-string-in-exception
4648
"F821", # undefined-name
49+
"ISC001", # single-line-implicit-string-concatenation
4750
"N999", # invalid-module-name
4851
"PD901", # pandas-df-variable-name
52+
"PIE790", # unnecessary-placeholder
4953
"PLR0913", # too-many-arguments
5054
]

0 commit comments

Comments
 (0)