File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -94,12 +94,13 @@ This module configures [`html-validate`](https://html-validate.org/) to automati
94
94
rules: {
95
95
'svg-focusable': 'off',
96
96
'no-unknown-elements': 'error',
97
- // Conflicts or not needed when using prettier formatting
97
+ // Conflicts or not needed as we use prettier formatting
98
98
'void-style': 'off',
99
99
'no-trailing-whitespace': 'off',
100
100
// Conflict with Nuxt defaults
101
101
'require-sri': 'off',
102
102
'attribute-boolean-style': 'off',
103
+ 'doctype-style': 'off',
103
104
// Unreasonable rule
104
105
'no-inline-style': 'off'
105
106
}
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ export const defaultHtmlValidateConfig: ConfigData = {
16
16
// Conflict with Nuxt defaults
17
17
'require-sri' : 'off' ,
18
18
'attribute-boolean-style' : 'off' ,
19
+ 'doctype-style' : 'off' ,
19
20
// Unreasonable rule
20
21
'no-inline-style' : 'off'
21
22
}
You can’t perform that action at this time.
0 commit comments