chore: isort avoid local build confusion, bump pre-commit (#2274)

This commit is contained in:
Henry Schreiner 2022-03-14 17:08:50 -04:00 committed by GitHub
parent f7b0f8c5cb
commit 18e664afb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 4 deletions

View File

@ -22,13 +22,13 @@ repos:
- id: isort
- repo: https://github.com/asottile/pyupgrade
rev: "v2.31.0"
rev: "v2.31.1"
hooks:
- id: pyupgrade
args: ["--py39-plus"]
- repo: https://github.com/hadialqattan/pycln
rev: "v1.2.0"
rev: "v1.2.5"
hooks:
- id: pycln
args: [--config=pyproject.toml]
@ -39,14 +39,14 @@ repos:
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
- repo: https://github.com/pycqa/flake8
rev: "4.0.1"
hooks:
- id: flake8
additional_dependencies: [flake8-bugbear]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v0.931"
rev: "v0.940"
hooks:
- id: mypy
args:

View File

@ -33,3 +33,6 @@ known_first_party = [
"pyodide_build",
"_pyodide",
]
known_third_party = [
"build",
]