diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index a6e7826..8b06911 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -24,11 +24,6 @@ repos: rev: 5.12.0 hooks: - id: isort -- repo: https://github.com/asottile/pyupgrade - rev: v3.14.0 - hooks: - - id: pyupgrade - args: [--py37-plus] - repo: https://github.com/psf/black rev: 23.9.1 hooks: diff --git a/pyproject.toml b/pyproject.toml index b8a1c32..e16bd5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,6 @@ profile = "black" [tool.ruff] -format = "github" ignore = [ "D10", # TODO: we are missing many docstrings "D203", # CONFIG: incompatible with D211 @@ -14,6 +13,7 @@ ignore = [ "PLR2004", # TODO: Magic value used in comparison, consider replacing 201 with a constant variable "N818" # TODO: exception naming ] +output-format = "github" select = [ "E", "F",