From 279d160f99cd40166f5e4fc48620858828384d39 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 7 Dec 2016 17:13:27 -0800 Subject: [PATCH] lint-all: Fix markdown_whitespace_rules indentation. --- tools/lint-all | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/lint-all b/tools/lint-all index 81f6eb5126..4861dc4b13 100755 --- a/tools/lint-all +++ b/tools/lint-all @@ -179,12 +179,12 @@ def build_custom_checkers(by_lang): 'description': 'Fix tab-based whitespace'}, ] # type: RuleList markdown_whitespace_rules = list([rule for rule in whitespace_rules if rule['pattern'] != '\s+$']) + [ - # Two spaces trailing a line with other content is okay--it's a markdown line break. - # This rule finds one space trailing a non-space, three or more trailing spaces, and - # spaces on an empty line. - {'pattern': '((?