Skip to content

Commit 7a1842e

Browse files
authored
Disabled `markdown/<no-multiple-h1|require-alt-text>
1 parent c627b1e commit 7a1842e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

eslint.config.mjs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ export default [
6666
...markdown.configs.recommended[0].rules,
6767
'markdown/heading-increment': 'off', // allow headings to skip levels
6868
'markdown/fenced-code-language': 'off', // allow code blocks w/ no language specified
69-
'markdown/no-missing-label-refs': 'off' // allow missing label references
69+
'markdown/no-missing-label-refs': 'off', // allow missing label references
70+
'markdown/no-multiple-h1': 'off', // allow multi H1s
71+
'markdown/require-alt-text': 'off' // allow missing img alts
7072
}
7173
},
7274
{ files: ['**/*.mjs'], languageOptions: { sourceType: 'module' }},

0 commit comments

Comments
 (0)