.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-markdownlint / snippets / snippets.json
1 {
2   "insertMarkdownLintDisableComment": {
3     "prefix": "markdownlint-disable",
4     "body": "<!-- markdownlint-disable ${1:MD000 }-->",
5     "description": "Disables one or more rules by name (MD013), alias (line-length), or tag (whitespace). Multiple rules are space-delimited (MD018 MD019). If no rules are specified, all rules are disabled. Takes effect starting with the line the comment is on."
6   },
7   "insertMarkdownLintEnableComment": {
8     "prefix": "markdownlint-enable",
9     "body": "<!-- markdownlint-enable ${1:MD000 }-->",
10     "description": "Enables one or more rules by name (MD013), alias (line-length), or tag (whitespace). Multiple rules are space-delimited (MD018 MD019). If no rules are specified, all rules are enabled. Takes effect starting with the line the comment is on."
11   },
12   "insertMarkdownLintDisableFileComment": {
13     "prefix": "markdownlint-disable-file",
14     "body": "<!-- markdownlint-disable-file ${1:MD000 }-->",
15     "description": "Disables one or more rules by name (MD013), alias (line-length), or tag (whitespace). Multiple rules are space-delimited (MD018 MD019). If no rules are specified, all rules are disabled. Applies to the entire file."
16   },
17   "insertMarkdownLintEnableFileComment": {
18     "prefix": "markdownlint-enable-file",
19     "body": "<!-- markdownlint-enable-file ${1:MD000 }-->",
20     "description": "Enables one or more rules by name (MD013), alias (line-length), or tag (whitespace). Multiple rules are space-delimited (MD018 MD019). If no rules are specified, all rules are enabled. Applies to the entire file."
21   },
22   "insertMarkdownLintCaptureComment": {
23     "prefix": "markdownlint-capture",
24     "body": "<!-- markdownlint-capture -->",
25     "description": "Captures the current rule configuration. Takes effect starting with the line the comment is on."
26   },
27   "insertMarkdownLintRestoreComment": {
28     "prefix": "markdownlint-restore",
29     "body": "<!-- markdownlint-restore -->",
30     "description": "Restores the most recently captured rule configuration. Defaults to the document's initial configuration. Takes effect starting with the line the comment is on."
31   }
32 }