Skip to content

Commit 02ece04

Browse files
authored
Allowed missing label refs in MD to overcome false positive bug eslint/markdown#294
1 parent cdb851b commit 02ece04

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

eslint.config.mjs

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ export default [
3434
rules: {
3535
...markdown.configs.recommended[0].rules,
3636
'markdown/heading-increment': 'off', // allow headings to skip levels
37-
'markdown/fenced-code-language': 'off' // allow code blocks w/ no language specified
37+
'markdown/fenced-code-language': 'off', // allow code blocks w/ no language specified
38+
'markdown/no-missing-label-refs': 'off' // allow missing label references
3839
}
3940
},
4041
{ files: ['**/*.yaml, **/*.yml'], ...eslintPluginYml.configs['flat/standard'][1] }

0 commit comments

Comments
 (0)