mirror of
https://github.com/simple-login/app.git
synced 2024-11-14 08:01:13 +01:00
046748c443
* Update pre-commit * Upgrade djlint, remove flake8 and add pylint * Reformat with new djlint version * Run pre-commit on CI * Use only python3.10 on CI * Reformat files with pre-commit * Run pre-commit against all files * Reformat * Added global excludes * Added pre-commit to the contributing file * Set python 3.9 as default * Set language version to python3 Co-authored-by: Adrià Casajús <adria.casajus@proton.ch> Co-authored-by: Carlos Quintana <carlos.quintana@proton.ch>
27 lines
690 B
YAML
27 lines
690 B
YAML
exclude: "(migrations|static/node_modules|static/assets|static/vendor)"
|
|
default_language_version:
|
|
python: python3
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.2.0
|
|
hooks:
|
|
- id: check-yaml
|
|
- id: trailing-whitespace
|
|
- repo: https://github.com/psf/black
|
|
rev: 22.3.0
|
|
hooks:
|
|
- id: black
|
|
- repo: https://gitlab.com/pycqa/flake8
|
|
rev: 3.9.2
|
|
hooks:
|
|
- id: flake8
|
|
- repo: https://github.com/Riverside-Healthcare/djLint
|
|
rev: v1.3.0
|
|
hooks:
|
|
- id: djlint-jinja
|
|
files: '.*\.html'
|
|
entry: djlint --reformat
|
|
- repo: https://github.com/PyCQA/pylint
|
|
rev: v2.14.4
|
|
hooks:
|
|
- id: pylint
|