You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My markdownlint configuration is a JavaScript file that I check with ESLint and the camelcase rule. ESLint returns errors because the properties are in snake_case.
The text was updated successfully, but these errors were encountered:
This is a holdover from the original Ruby implementation. It's reasonable to do as you suggest, but I'd rather not code it into every rule or document/test/sample both forms. I'll think about how/when this might be least disruptive.
Description
Option names are in snake_case (e.g.
siblings_only
for theno-duplicate-heading
rule). camelCase names should also be supported (e.g.siblingsOnly
).Motivations
skipStrings
forno-irregular-whitespace
`ignoreProperties
forproperty-no-unknown
allowAttrs
forinvalid-attr
requireCapitalFirstLetter
fordescription-format
camelcase
rule. ESLint returns errors because the properties are in snake_case.The text was updated successfully, but these errors were encountered: