diff options
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r-- | .pre-commit-config.yaml | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml deleted file mode 100644 index d3cb20e..0000000 --- a/.pre-commit-config.yaml +++ /dev/null @@ -1,49 +0,0 @@ -exclude: '^docs/|/migrations/|devcontainer.json' -default_stages: [commit] - -default_language_version: - python: python3.11 - -repos: - - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.6.0 - hooks: - - id: trailing-whitespace - - id: end-of-file-fixer - - id: check-json - - id: check-toml - - id: check-xml - - id: check-yaml - - id: debug-statements - - id: check-builtin-literals - - id: check-case-conflict - - id: check-docstring-first - - id: detect-private-key - - - repo: https://github.com/adamchainz/django-upgrade - rev: '1.17.0' - hooks: - - id: django-upgrade - args: ['--target-version', '4.2'] - - # Run the Ruff linter. - - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.4.4 - hooks: - # Linter - - id: ruff - args: [--fix, --exit-non-zero-on-fix] - # Formatter - #- id: ruff-format - - - repo: https://github.com/Riverside-Healthcare/djLint - rev: v1.34.1 - hooks: - - id: djlint-reformat-django - - id: djlint-django - -# sets up .pre-commit-ci.yaml to ensure pre-commit dependencies stay up to date -ci: - autoupdate_schedule: weekly - skip: [] - submodules: false |