-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
34 lines (32 loc) · 1.36 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# [INFO] djLint:
# https://www.djlint.com/
#
# [INFO] djLint configuration for Jinja:
# https://www.djlint.com/docs/languages/jinja/
[tool.djlint]
profile="jinja"
# [NOTE] T003 — bad practice in my opinion, see 4.1 item:
# https://github.com/Riverside-Healthcare/djLint/issues/345#issue-1345158405
#
# [NOTE] H014 — bad practice in my opinion:
# https://github.com/Riverside-Healthcare/djLint/issues/341#issuecomment-1225671131
#
# [NOTE] H016 — I use “includes” and blocks,
# and may not use “title” in the one page with “html lang”
#
# [NOTE] H017 — bad practice in my opinion, see 4.2 item:
# https://github.com/Riverside-Healthcare/djLint/issues/345#issue-1345158405
# Google HTML/CSS Style Guide doesn’t recommend close void elements:
# https://google.github.io/styleguide/htmlcssguide.html#Document_Type
#
# [NOTE] H025 — too strange rule without a single positive inclusion for me
#
# [NOTE] H030 — I use “includes” and blocks,
# and may not use meta tags in the one page with “html lang”
#
# [NOTE] H031 — “until 2009 for Google to publicly confirm
# that the meta keyword tag is no longer relevant for the ranking”,
# “Today, in contrast to the Meta Description and Meta Title,
# the meta keywords are often no longer filled with terms.”
# https://en.ryte.com/wiki/Meta_Keyword#General_information
ignore="T003,H014,H016,H017,H025,H030,H031"