-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
LINT - Run updated pre-commit hooks (#2049)
Follows-up #2044 --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Daniel McCloy <[email protected]> Co-authored-by: M Bussonnier <[email protected]>
- Loading branch information
1 parent
c0f2db5
commit f6102b4
Showing
39 changed files
with
244 additions
and
126 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
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
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
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
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
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
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
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
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
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
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
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 |
---|---|---|
|
@@ -2,11 +2,11 @@ | |
# Copyright (C) 2024 ORGANIZATION | ||
# This file is distributed under the same license as the PROJECT project. | ||
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024. | ||
# | ||
# | ||
# Translators: | ||
# Cristhian Rivera, 2024 | ||
# Oriol Abril-Pla <[email protected]>, 2024 | ||
# | ||
# | ||
msgid "" | ||
msgstr "" | ||
|
||
|
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
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 |
---|---|---|
|
@@ -182,4 +182,3 @@ msgstr "" | |
|
||
#~ msgid "light/dark" | ||
#~ msgstr "" | ||
|
Oops, something went wrong.