We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
markdown/<no-multiple-h1|require-alt-text>
1 parent b285750 commit 17dfe55Copy full SHA for 17dfe55
1 file changed
eslint.config.mjs
@@ -35,7 +35,9 @@ export default [
35
...markdown.configs.recommended[0].rules,
36
'markdown/heading-increment': 'off', // allow headings to skip levels
37
'markdown/fenced-code-language': 'off', // allow code blocks w/ no language specified
38
- 'markdown/no-missing-label-refs': 'off' // allow missing label references
+ 'markdown/no-missing-label-refs': 'off', // allow missing label references
39
+ 'markdown/no-multiple-h1': 'off', // allow multi H1s
40
+ 'markdown/require-alt-text': 'off' // allow missing img alts
41
}
42
},
43
{ files: ['**/*.mjs'], languageOptions: { sourceType: 'module' }},
0 commit comments