Skip to content

Commit 324b06f

Browse files
authored
Merge pull request #134 from nathanchance/update-for-ruff-0.15.22
ruff.toml: Update for RUF201 in ruff 0.15.22
2 parents c022cb8 + 55ba534 commit 324b06f

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

ruff.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ extend-select = [
3333
'W', # pycodestyle
3434
]
3535
ignore = [
36-
'E501', # line-too-long
37-
'PLR0911', # too-many-return-statments
38-
'PLR0912', # too-many-branches
39-
'PLR0913', # too-many-arguments
40-
'PLR0915', # too-many-statements
41-
'PLR2004', # magic-value-comparison
42-
'S404', # suspicious-subprocess-import
43-
'S603', # subprocess-without-shell-equals-true
44-
'S607', # start-process-with-partial-path
36+
'line-too-long',
37+
'magic-value-comparison',
38+
'start-process-with-partial-path',
39+
'subprocess-without-shell-equals-true',
40+
'suspicious-subprocess-import',
41+
'too-many-arguments',
42+
'too-many-branches',
43+
'too-many-return-statements',
44+
'too-many-statements',
4545
]
4646
preview = true

0 commit comments

Comments
 (0)