Skip to content

Commit

Permalink
DX: switch to black pre-commit hook (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer authored Nov 7, 2023
1 parent 538fd5d commit 0049e63
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 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
2 changes: 1 addition & 1 deletion tests/utilities/test_precommit.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def test_load_default(self):
repo_names = {repo.repo for repo in config.repos}
assert repo_names >= {
"https://github.com/pre-commit/pre-commit-hooks",
"https://github.com/psf/black",
"https://github.com/psf/black-pre-commit-mirror",
}


Expand Down

0 comments on commit 0049e63

Please sign in to comment.