diff options
author | silverwind <me@silverwind.io> | 2023-07-09 22:33:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-09 20:33:25 +0000 |
commit | 61e0d1a767e1a1a509de9de4aff42bdb79cc6443 (patch) | |
tree | 26b33e39b0a29493abfc93343cc0332bcf5b661e /pyproject.toml | |
parent | be23b73e8523738a1d3c214a01c0f162146da1c0 (diff) | |
download | gitea-61e0d1a767e1a1a509de9de4aff42bdb79cc6443.tar.gz gitea-61e0d1a767e1a1a509de9de4aff42bdb79cc6443.zip |
Enable H014 and H023 djlint rules (#25786)
Enable these rules:
- H014 | More than 2 blank lines.
- H023 | Do not use entity references.
There are more potential rules to enable but they are blocked by bugs in
the linter:
- https://github.com/Riverside-Healthcare/djLint/issues/711
- https://github.com/Riverside-Healthcare/djLint/issues/712
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 7a30f59140..43c6b050bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,4 +12,4 @@ djlint = "1.31.1" [tool.djlint] profile="golang" -ignore="H005,H006,H008,H013,H014,H016,H020,H021,H023,H026,H030,H031,T027" +ignore="H005,H006,H008,H013,H016,H020,H021,H026,H030,H031,T027" |