Skip to content

Commit

Permalink
Makefile: djlint add T002 (double quotes should be used in tags) to e…
Browse files Browse the repository at this point in the history
…xclude list as it clashes too often
  • Loading branch information
goapunk committed Jan 6, 2025
1 parent 3bbf42e commit 30ba088
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ lint-html-fix:
.PHONY: lint-html-files
lint-html-files:
EXIT_STATUS=0; \
$(VIRTUAL_ENV)/bin/djlint $(ARGUMENTS) --profile=django --ignore=H006,H030,H031,H037 || EXIT_STATUS=$$?; \
$(VIRTUAL_ENV)/bin/djlint $(ARGUMENTS) --profile=django --ignore=H006,H030,H031,H037,T002 || EXIT_STATUS=$$?; \
exit $${EXIT_STATUS}

.PHONY: lint-python-files
Expand Down
3 changes: 3 additions & 0 deletions changelog/8382.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### Changed
- replace chevron icon with thumbs for ratings to be consistent with changes in
a4

0 comments on commit 30ba088

Please sign in to comment.