Skip to content

Commit

Permalink
update pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
5hojib committed Nov 25, 2024
1 parent 6f35ee0 commit 051c4f8
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,30 +78,29 @@ required-imports = ["from __future__ import annotations"]

[tool.ruff.lint]
select = [
"FURB", # refurb
"I", # isort
"E", # pycodestyle: error
"W", # pycodestyle: warning
"UP", # pyupgrade
"F", # pyflakes
"SIM", # flake8-simplify
"RET", # flake8-return
"I", # isort
"W", # pycodestyle: warning
"B", # flake8-bugbear
"G", # flake8-logging-format
"N", # pep8-naming
"C4", # flake8-comprehensions
"UP", # pyupgrade
"FA", # flake8-future-annotations
"PL", # pylint
"PTH", # flake8-use-pathlib
"PERF", # perflint
"N", # pep8-naming
"RET", # flake8-return
"RUF", # ruff
"G", # flake8-logging-format
"TID", # flake8-tidy-imports
"SIM", # flake8-simplify
"TCH", # flake8-type-checking
"FA", # flake8-future-annotations
"PL", # pylint
"TID", # flake8-tidy-imports
"ARG", # flake8-unused-arguments
"C90", # mccabe
"ASYNC", # flake8-async
"B", # flake8-bugbear
"COM", # flake8-commas
"ANN", # flake8-annotations
"FURB", # refurb
"PERF", # perflint
"ASYNC", # flake8-async
]

ignore = [
Expand Down

0 comments on commit 051c4f8

Please sign in to comment.