-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update pre-commit hooks / linter config
Co-authored-by: M Bussonnier <[email protected]> Co-authored-by: Daniel McCloy <[email protected]>
- Loading branch information
1 parent
33333c8
commit 2dc4fcb
Showing
2 changed files
with
28 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,41 +9,38 @@ ci: | |
# Fix the node version to avoid a GLIBC error | ||
# ref: https://stackoverflow.com/questions/71939099/bitbucket-pipeline-error-installing-pre-commit-ts-lint/71940852#71940852 | ||
default_language_version: | ||
node: 16.14.2 | ||
node: 22.9.0 | ||
|
||
repos: | ||
- repo: https://github.com/pre-commit/mirrors-prettier | ||
rev: v4.0.0-alpha.8 | ||
- repo: "https://github.com/pycontribs/mirrors-prettier" | ||
rev: v3.3.3 | ||
hooks: | ||
- id: prettier | ||
# Exclude the HTML, since it doesn't understand Jinja2 | ||
# exclude also the webpack.config.js file has it embed complete url dificult to prettify | ||
# exclude the pytest-regressions folder tests/test_ally | ||
exclude: .+\.html|webpack\.config\.js|tests/test_a11y/ | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 24.10.0 | ||
hooks: | ||
- id: black | ||
|
||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
- repo: "https://github.com/astral-sh/ruff-pre-commit" | ||
rev: "v0.7.2" | ||
hooks: | ||
- id: ruff | ||
args: [--exit-non-zero-on-fix] | ||
- id: ruff-format | ||
|
||
- repo: https://github.com/asottile/pyupgrade | ||
- repo: "https://github.com/asottile/pyupgrade" | ||
rev: v3.19.0 | ||
hooks: | ||
- id: pyupgrade | ||
args: [--py37-plus] | ||
|
||
- repo: https://github.com/Riverside-Healthcare/djLint | ||
- repo: "https://github.com/Riverside-Healthcare/djLint" | ||
rev: v1.35.4 | ||
hooks: | ||
- id: djlint-jinja | ||
types_or: ["html"] | ||
|
||
- repo: https://github.com/PyCQA/doc8 | ||
- repo: "https://github.com/PyCQA/doc8" | ||
rev: v1.1.2 | ||
hooks: | ||
- id: doc8 | ||
|
@@ -53,12 +50,12 @@ repos: | |
hooks: | ||
- id: nbstripout | ||
|
||
- repo: https://github.com/mondeja/pre-commit-po-hooks | ||
- repo: "https://github.com/mondeja/pre-commit-po-hooks" | ||
rev: v1.7.3 | ||
hooks: | ||
- id: remove-metadata | ||
|
||
- repo: https://github.com/thibaudcolas/pre-commit-stylelint | ||
- repo: "https://github.com/thibaudcolas/pre-commit-stylelint" | ||
rev: v16.10.0 | ||
hooks: | ||
- id: stylelint | ||
|
@@ -68,3 +65,9 @@ repos: | |
# stylelint itself needs to be here when using additional_dependencies. | ||
- [email protected] | ||
- [email protected] | ||
|
||
- repo: "https://github.com/pre-commit/pre-commit-hooks" | ||
rev: v5.0.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters