From: Nicolas Coden Date: Tue, 15 Nov 2016 17:31:34 +0000 (+0100) Subject: Sass lint: `0` convention for no border X-Git-Tag: v6.3-rc1~2^2~5^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=08e761041733079ab91ceec657e712f4f2c06221;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Sass lint: `0` convention for no border Use `border: 0;` instead of `border: zero;` to disable border. See : https://stackoverflow.com/questions/2922909/should-i-use-border-none-or- border-0 Pros: - More concise - Used a lot Cons: - X Other convention: `border: none;` --- diff --git a/.sass-lint.yml b/.sass-lint.yml index ae8aeba56..7a1ff5d52 100644 --- a/.sass-lint.yml +++ b/.sass-lint.yml @@ -17,7 +17,7 @@ options: rules: border-zero: - 1 - - convention: zero + - convention: '0' brace-style: - 1