From db3454f95bf773cc8dadb663e9f3473cb5468514 Mon Sep 17 00:00:00 2001 From: David Anson Date: Tue, 23 Jul 2019 20:59:48 -0700 Subject: [PATCH] Additional code review tweaks to snippet implementation. --- snippets.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/snippets.json b/snippets.json index 7d2eefc..73b79de 100644 --- a/snippets.json +++ b/snippets.json @@ -1,23 +1,23 @@ { "insertMarkdownLintDisableComment": { "prefix": "markdownlint-disable", - "body": "", - "description": "Disables one or more markdownlint rules by name (e.g. MD013), alias (e.g. first-heading-h1), or tag (e.g. indentation). Multiple rules are space-delimited (e.g. MD018 MD019). If no rules are specified, then all rules are disabled unconditionally. Takes effect starting with the line this comment is on." + "body": "", + "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." }, "insertMarkdownLintEnableComment": { "prefix": "markdownlint-enable", - "body": "", - "description": "Enables one or more markdownlint rules by name (e.g. MD013), alias (e.g. first-heading-h1), or tag (e.g. indentation). Multiple rules are space-delimited (e.g. MD018 MD019). If no rules are specified, then all rules are enabled unconditionally. Takes effect starting with the line this comment is on." + "body": "", + "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." }, "insertMarkdownLintCaptureComment": { "prefix": "markdownlint-capture", "body": "", - "description": "Captures the current markdownlint rule configuration. Takes effect on the line this comment is on." + "description": "Captures the current rule configuration. Takes effect starting with the line the comment is on." }, "insertMarkdownLintRestoreComment": { "prefix": "markdownlint-restore", "body": "", - "description": "Restores the most recently captured markdownlint rule configuration, which by default is the document's initial configuration (i.e. as if every document started with ``). Takes effect on the line this comment is on." - }, + "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." + } }