We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e129113 commit 2e7328aCopy full SHA for 2e7328a
.pre-commit-config.yaml
@@ -17,8 +17,17 @@ repos:
17
rev: 6.0.1
18
hooks:
19
- id: isort
20
+- repo: https://github.com/PyCQA/autoflake
21
+ rev: v2.3.1
22
+ hooks:
23
+ - id: autoflake
24
+ args: [
25
+ "--in-place",
26
+ "--remove-unused-variables",
27
+ "--remove-all-unused-imports",
28
+ ]
29
- repo: https://github.com/PyCQA/flake8
- rev: 7.1.2
30
+ rev: 7.2.0
31
32
- id: flake8
33
- repo: https://github.com/shellcheck-py/shellcheck-py
pyproject.toml
@@ -24,3 +24,6 @@ dev = [
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
+[tool.isort]
+profile = "black"
+
0 commit comments