Skip to content

Commit

Permalink
DX: switch to black pre-commit hook
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer committed Nov 7, 2023
1 parent 538fd5d commit 087815e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ repos:
language: python
files: ^\.pre\-commit\-(config|hooks)\.yaml$

- repo: https://github.com/psf/black
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 23.9.1
hooks:
- id: black
Expand Down
7 changes: 6 additions & 1 deletion src/repoma/check_dev_files/black.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ def main(has_notebooks: bool) -> None:
executor = Executor()
executor(_remove_outdated_settings)
executor(_update_black_settings)
executor(
remove_precommit_hook,
hook_id="black",
repo_url="https://github.com/psf/black",
)
executor(_update_precommit_repo, has_notebooks)
executor(add_extension_recommendation, "ms-python.black-formatter")
executor(set_setting, {"black-formatter.importStrategy": "fromEnvironment"})
Expand Down Expand Up @@ -81,7 +86,7 @@ def _update_black_settings() -> None:

def _update_precommit_repo(has_notebooks: bool) -> None:
expected_hook = CommentedMap(
repo="https://github.com/psf/black",
repo="https://github.com/psf/black-pre-commit-mirror",
hooks=[CommentedMap(id="black")],
)
if has_notebooks:
Expand Down

0 comments on commit 087815e

Please sign in to comment.