mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 17:35:27 +08:00
3fcb37f246
* Reformat base64 encoded messages to shorter lines * Remove storing debug versions * Add example test email * Update linelength to 76 * Revert changes in pre-commit --------- Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
24 lines
602 B
YAML
24 lines
602 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://github.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
|
|
|