forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.jsonc
More file actions
18 lines (18 loc) · 1.18 KB
/
.markdownlint.jsonc
File metadata and controls
18 lines (18 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
//
// Configuration file for MarkDownLint. More information: https://docs.airbyte.com/contributing-to-airbyte/writing-docs#lint-with-markdownlint
//
"MD007": false, // Disable the "unordered-list-indentation" rule (allows unordered list items to be indented by any number of spaces)
"MD013": false, // Disable the "line-length" rule (allows long lines without warnings)
"MD033": false, // Disable the "no-inline-html" rule (allows inline HTML in Markdown)
"MD010": false, // Disable the "no-hard-tabs" rule (allows hard tabs instead of spaces)
"MD041": false, // Disable the "first-line-heading/first-line-h1" rule (allows files without a top-level heading as the first line)
"MD034": false, // Disable the rule that suggests using angle brackets instead of bare URLs. Angle brackets break the Docusaurus build.
"MD046": {
"style": "fenced" // Enforce fenced code blocks (e.g. ` or ```) and don't permit code sample indentation without fences
},
"MD004": {
"style": "dash" // Enforce "dash" style for unordered list items (e.g., "- item")
},
"MD024": { "siblings_only": true } // Allow duplicate headings in different sections
}