1
0
mirror of https://github.com/hestiacp/hestiacp.git synced 2025-02-06 10:24:04 +00:00
hestiacp/.markdownlint-cli2.cjs
Alec Rust a6da0064a9
Switch to CJS for markdownlint config (#3115)
More consistent with other existing config files.
2022-12-06 13:45:35 +01:00

13 lines
226 B
JavaScript

module.exports = {
config: {
// MD010/no-hard-tabs
MD010: false,
// MD013/line-length
MD013: false,
// MD024/no-duplicate-heading/no-duplicate-header
MD024: false,
// MD033/no-inline-html
MD033: false,
},
};