@@ -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]
6160ignore = [
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]
7468line-length = 120
7569target-version = " py311"
70+
71+ [tool .ruff .pydocstyle ] # https://beta.ruff.rs/docs/settings/#pydocstyle
72+ convention = " google"
0 commit comments