Skip to content

Commit

Permalink
Allowed missing label refs in MD to overcome false positive bug eslin…
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlui authored Nov 13, 2024
1 parent cdb851b commit 02ece04
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ export default [
rules: {
...markdown.configs.recommended[0].rules,
'markdown/heading-increment': 'off', // allow headings to skip levels
'markdown/fenced-code-language': 'off' // allow code blocks w/ no language specified
'markdown/fenced-code-language': 'off', // allow code blocks w/ no language specified
'markdown/no-missing-label-refs': 'off' // allow missing label references
}
},
{ files: ['**/*.yaml, **/*.yml'], ...eslintPluginYml.configs['flat/standard'][1] }
Expand Down

0 comments on commit 02ece04

Please sign in to comment.