Skip to content

Commit

Permalink
chore: add ruff linter and code formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Jan 30, 2025
1 parent e900556 commit e744e08
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions config/clients/python/template/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ target-version = "py310"

[tool.ruff.lint]
extend-select = [
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"C9", # mccabe
#"B", # flake8-bugbear
#"C4", # flake8-comprehensions
#"C9", # mccabe
"I", # isort
"PGH", # pygrep-hooks
"RUF", # ruff
"UP", # pyupgrade
"W", # pycodestyle
"YTT", # flake8-2020
"TRY", # tryceratops
"EM", # flake8-errmsg
#"PGH", # pygrep-hooks
#"RUF", # ruff
#"UP", # pyupgrade
#"W", # pycodestyle
#"YTT", # flake8-2020
#"TRY", # tryceratops
#"EM", # flake8-errmsg
]
ignore = []

Expand Down

0 comments on commit e744e08

Please sign in to comment.