Skip to content

Commit

Permalink
Add pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
brylie committed Nov 26, 2023
1 parent 0c65768 commit 5eabe38
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-added-large-files
- id: check-case-conflict
- id: check-json
- id: check-toml
- id: check-merge-conflict
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
hooks:
- id: pyupgrade
args: [--py311-plus]
- repo: https://github.com/adamchainz/django-upgrade
rev: 1.15.0
hooks:
- id: django-upgrade
args: [--target-version, "4.2"]
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
hooks:
- id: add-trailing-comma
args: [--py36-plus]
exclude: ".*migrations/.*"
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.1.5
hooks:
# Run the linter.
- id: ruff
args: [--fix]
exclude: ".*migrations/.*"
# Run the formatter.
- id: ruff-format
exclude: ".*migrations/.*"
- repo: https://github.com/thibaudcolas/curlylint
rev: "v0.13.1"
hooks:
- id: curlylint
- repo: https://github.com/PyCQA/docformatter
rev: "v1.7.5"
hooks:
- id: docformatter
- repo: https://github.com/rtts/djhtml
rev: 3.0.6
hooks:
- id: djhtml
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.1.0
hooks:
- id: prettier
types_or:
- css
- javascript
- json
- markdown
- scss
- yaml
- repo: https://github.com/google/keep-sorted
rev: v0.2.0
hooks:
- id: keep-sorted
exclude: ".*migrations/.*"

0 comments on commit 5eabe38

Please sign in to comment.