Skip to content

Commit

Permalink
Update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
dsbilling committed May 16, 2024
1 parent 8b5003a commit 24f6f83
Showing 1 changed file with 16 additions and 31 deletions.
47 changes: 16 additions & 31 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,40 +32,25 @@ exclude = [

[tool.ruff.lint]
select = [
# ruff
"RUF",
# pycodestyle
"E", "W",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
# flake8-print
"T",
# flake8-todos
"TD",
# flake8-logging
"LOG",
# pep8-naming
"N",
# pydocstyle
"D",
# flake8-return
"RET",
# flake8-type-checking
"TYP",
# pylint
"PL",
"RUF", # ruff
"E", "W", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
"T", # flake8-print
"TD", # flake8-todos
"LOG", # flake8-logging
"N", # pep8-naming
"D", # pydocstyle
"RET", # flake8-return
"TYP", # flake8-type-checking
"PL", # pylint
]
ignore = [
"D100", # Missing docstring in public module
"D104", # Missing docstring in public package
"D104", # Missing docstring in public package
"D415", # First line should end with a period
"D203", # 1 blank line required before class docstring
"D212", # Multi-line docstring summary should start at the first line
Expand Down

0 comments on commit 24f6f83

Please sign in to comment.