-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add precommit hook for code formatting
- Loading branch information
1 parent
60c6837
commit 6518967
Showing
1 changed file
with
78 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,78 @@ | ||
default_language_version: | ||
python: python3 | ||
|
||
ci: | ||
autofix_prs: true | ||
autoupdate_commit_msg: "[pre-commit.ci] pre-commit suggestions" | ||
autoupdate_schedule: quarterly | ||
|
||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
hooks: | ||
# list of supported hooks: https://pre-commit.com/hooks.html | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: check-case-conflict | ||
- id: debug-statements | ||
- id: detect-private-key | ||
- id: check-added-large-files | ||
args: ["--maxkb=500", "--enforce-all"] | ||
exclude: | | ||
(?x)^( | ||
)$ | ||
- repo: https://github.com/asottile/pyupgrade | ||
rev: v3.3.1 | ||
hooks: | ||
- id: pyupgrade | ||
args: [--py37-plus] | ||
name: Upgrade code | ||
|
||
# python formatting | ||
- repo: https://github.com/psf/black | ||
rev: 23.1.0 | ||
hooks: | ||
- id: black | ||
name: Format code | ||
args: ["--line-length=120"] | ||
|
||
- repo: https://github.com/hadialqattan/pycln | ||
rev: v2.1.3 # Possible releases: https://github.com/hadialqattan/pycln/releases | ||
hooks: | ||
- id: pycln | ||
args: [--all] | ||
|
||
# ref: https://github.com/microsoft/vscode-isort] | ||
- repo: https://github.com/pycqa/isort | ||
rev: 5.12.0 | ||
hooks: | ||
- id: isort | ||
name: isort (python) | ||
args: [--profile, "black"] | ||
|
||
# python docstring formatting | ||
- repo: https://github.com/myint/docformatter | ||
rev: v1.5.1 | ||
hooks: | ||
- id: docformatter | ||
args: [--in-place, --wrap-summaries, "99", --wrap-descriptions, "92"] | ||
|
||
# yaml formatting | ||
- repo: https://github.com/pre-commit/mirrors-prettier | ||
rev: v3.0.0-alpha.4 | ||
hooks: | ||
- id: prettier | ||
types: [yaml] | ||
|
||
# markdown formatting | ||
- repo: https://github.com/executablebooks/mdformat | ||
rev: 0.7.16 | ||
hooks: | ||
- id: mdformat | ||
additional_dependencies: | ||
- mdformat-gfm | ||
#- mdformat-black | ||
- mdformat_frontmatter | ||
exclude: CHANGELOG.md |