Skip to content

Commit

Permalink
Organize ignores that are to be fixed later #515
Browse files Browse the repository at this point in the history
Signed-off-by: Jono Yang <[email protected]>
  • Loading branch information
JonoYang committed Aug 13, 2024
1 parent 3e63936 commit 297ea3b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,25 @@ select = [
"C9", # McCabe complexity
]
ignore = [
"C901", # complex-structure
"D1",
"D203", # one-blank-line-before-class
"D205", # blank-line-after-summary
"D212", # multi-line-summary-first-line
"D400", # ends-in-period
"D415", # ends-in-punctuation
"E501", # line-too-long
# TODO: we want to address these issues in the codebase, then get rid of
# the following ignores
"C901", # complex-structure
"S101", # assert
"S103", # bad-file-permissions
"S113", # request-without-timeout
"S202", # tarfile-unsafe-members
"S314", # suspicious-xml-element-tree-usage
"S320", # suspicious-xmle-tree-usage
"S324", # hashlib-insecure-hash-function
"S506", # unsafe-yaml-load
"S602", # subprocess-popen-with-shell-equals-true
]

[tool.ruff.lint.isort]
Expand Down

0 comments on commit 297ea3b

Please sign in to comment.