We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f93bac8 commit 96de93cCopy full SHA for 96de93c
src/core/core.ts
@@ -23,15 +23,15 @@ const DEFAULT_RULESETS: Record<string, Ruleset> = {
23
// TODO: Define recommended rules
24
},
25
[HTMLHINT_LEGACY]: {
26
- 'tagname-lowercase': 'error',
27
'attr-lowercase': 'error',
+ 'attr-no-duplication': 'error',
28
'attr-value-double-quotes': 'error',
29
'doctype-first': 'error',
30
- 'tag-pair': 'error',
31
- 'spec-char-escape': 'error',
32
'id-unique': 'error',
+ 'spec-char-escape': 'error',
33
'src-not-empty': 'error',
34
- 'attr-no-duplication': 'error',
+ 'tag-pair': 'error',
+ 'tagname-lowercase': 'error',
35
'title-require': 'error',
36
37
}
0 commit comments