Skip to content

Commit

Permalink
embiggen rules list
Browse files Browse the repository at this point in the history
  • Loading branch information
chris48s committed Jan 30, 2024
1 parent 6abb017 commit ea8ef6a
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions {{ cookiecutter.__project_name_kebab }}/ruff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,19 @@ target-version = "py38" # minimum target version


[lint]
# E: pycodestyle errors
# F: Pyflakes
# W: Warning
# I: isort
# B: flake8-bugbear
# C4: flake8-comprehensions
select = ["E", "F", "W", "I", "B", "C4"]
select = [
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"DJ", # flake8-django
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"RUF100", # unused noqa
"S", # flake8-bandit
"UP", # pyupgrade
"W", # warning
]
fixable = ["C4", "E", "F", "I", "UP"]

# E501: Line too long
ignore = ["E501"]
Expand Down

0 comments on commit ea8ef6a

Please sign in to comment.