misc: add djhtml files/notes (#69709)

This commit is contained in:
Valentin Deniaud 2022-09-29 11:50:30 +02:00
parent 4784a3990e
commit 54126b6ccf
3 changed files with 13 additions and 2 deletions

View File

@ -4,3 +4,5 @@
29bc8e66a978b1bbadbc05186599a70ce1b8ef98
# misc: apply pyupgrade (#55868)
f4615c506194cf4eace0af551f14f54552f09dc5
# misc: apply djhtml (#69709)
4784a3990eec0aadadce99bf1da21c0b531b289d

View File

@ -16,6 +16,11 @@ repos:
hooks:
- id: pyupgrade
args: ['--keep-percent-format', '--py37-plus']
- repo: https://github.com/rtts/djhtml
rev: 'v1.5.2'
hooks:
- id: djhtml
args: ['--tabwidth', '2']
- repo: https://git.entrouvert.org/pre-commit-debian.git
rev: v0.1
hooks:

8
README
View File

@ -104,9 +104,13 @@ pyupgrade is used to automatically upgrade syntax, using those parameters:
pyupgrade --keep-percent-format --py37-plus
djhtml is used to automatically indent html files, using those parameters:
django-upgrade --tabwidth 2
There is .pre-commit-config.yaml to use pre-commit to automatically run black,
isort and pyupgrade before commits. (execute `pre-commit install` to install
the git hook.)
isort, pyupgrade, and djhtml before commits. (execute `pre-commit install`
to install the git hook.)
License