diff --git a/pyproject.example.toml b/pyproject.example.toml index e6282fb..ffbec44 100644 --- a/pyproject.example.toml +++ b/pyproject.example.toml @@ -43,26 +43,25 @@ select = [ # "I", # isort "UP", # pyupgrade "ASYNC", # flake8-async + "B", # flake8-bugbear "C4", # flake8-comprehensions "T10", # flake8-debugger "T20", # flake8-print "PYI", # flake8-pyi "PT", # flake8-pytest-style "Q", # flake8-quotes + "SIM", # flake8-simplify "TID", # flake8-tidy-imports "RUF", # Ruff-specific rules ] ignore = [ "E402", # module-import-not-at-top-of-file + "B008", # function-call-in-default-argument "RUF001", # ambiguous-unicode-character-string "RUF002", # ambiguous-unicode-character-docstring "RUF003", # ambiguous-unicode-character-comment ] -[tool.ruff.lint.per-file-ignores] -"githubkit/rest/**" = ["E501", "PYI016", "TID"] -"githubkit/versions/**" = ["E501", "PYI016", "TID"] - [tool.ruff.lint.isort] length-sort = true force-sort-within-sections = true