From b08a918ba53a2b2044808da8590e2ccaaf18350f Mon Sep 17 00:00:00 2001 From: Pau Perez Date: Fri, 8 Jan 2021 13:06:29 +0100 Subject: [PATCH] Do not check for spaces inside the braces of hash This shuts the annoying lint error ``` Hash attribute should start with one space after the opening brace Hash attribute should end with one space before the closing brace ``` and it aligns with our existing style. See https://github.com/openfoodfoundation/openfoodnetwork/pull/6629 as an example. --- .haml-lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.haml-lint.yml b/.haml-lint.yml index 25ceeb841e..979e351be6 100644 --- a/.haml-lint.yml +++ b/.haml-lint.yml @@ -55,7 +55,7 @@ linters: SpaceInsideHashAttributes: enabled: true - style: space + style: no_space TagName: enabled: true @@ -67,4 +67,4 @@ linters: enabled: true UnnecessaryStringOutput: - enabled: true \ No newline at end of file + enabled: true