Skip to content

Commit 9896049

Browse files
committed
Clean up pyproject.toml
Decide on a doc convention. Allow implicit namespaces for this project.
1 parent de2dac0 commit 9896049

1 file changed

Lines changed: 9 additions & 12 deletions

File tree

pyproject.toml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ select = [
4848
"FA", # flake8-future-annotations
4949
"RET", # flake8-return
5050
"ICN", # flake8-import-conventions
51-
"INP", # flake8-no-pep420
5251
"PIE", # flake8-pie
5352
"PT", # flake8-pytest-style
5453
"SIM", # flake8-simplify
@@ -59,17 +58,15 @@ select = [
5958
"G", # flake8-logging-format
6059
]
6160
ignore = [
62-
"E501", # line-too-long
63-
"S101", # assert
64-
"ANN101", # missing-type-self
65-
"ANN102", # missing-type-cls
66-
"D203", # one-blank-line-before-class
67-
"D204", # one-blank-line-after-class
68-
"D213", # multi-line-summary-second-line
69-
"D407", # dashed-underline-after-section
70-
"D408", # section-underline-after-name
71-
"D409", # section-underline-matches-section-length
72-
"S311", # suspicious-non-cryptographic-random-usage
61+
"E501", # line-too-long
62+
"S101", # assert
63+
"ANN101", # missing-type-self
64+
"ANN102", # missing-type-cls
65+
"S311", # suspicious-non-cryptographic-random-usage
66+
"PLR0913", # too-many-arguments
7367
]
7468
line-length = 120
7569
target-version = "py311"
70+
71+
[tool.ruff.pydocstyle] # https://beta.ruff.rs/docs/settings/#pydocstyle
72+
convention = "google"

0 commit comments

Comments
 (0)