Skip to content

Commit

Permalink
add precommit hook for code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
antoine-galataud committed Aug 31, 2023
1 parent 60c6837 commit 6518967
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions .pre-commit-config.yaml
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

0 comments on commit 6518967

Please sign in to comment.