From 84327714b842434d11fde29657434cd385b1f5c5 Mon Sep 17 00:00:00 2001 From: Elias Showk Date: Mon, 4 Jun 2018 16:28:18 +0200 Subject: [PATCH] change sass-lint rules (#24028) --- .sass-lint.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.sass-lint.yml b/.sass-lint.yml index baf1442..18e4df6 100644 --- a/.sass-lint.yml +++ b/.sass-lint.yml @@ -10,17 +10,17 @@ options: # Output file instead of logging results output-file: 'linters/sass-lint.html' # Raise an error if more than 50 warnings are generated - max-warnings: 50 + max-warnings: 200 # File Options files: - include: 'static/**/*.s+(a|c)ss' - ignore: - - 'sass/vendor/**/*.*' + include: 'static/*/*.s+(a|c)ss' + # ignore: + # - 'sass/vendor/**/*.*' # Rule Configuration rules: extends-before-mixins: 2 extends-before-declarations: 2 - placeholder-in-extend: 2 + placeholder-in-extend: 1 mixins-before-declarations: - 2 - @@ -29,11 +29,11 @@ rules: - mq no-warn: 1 - no-debug: 1 - no-ids: 1 - no-important: 2 + no-debug: 2 + no-ids: 0 + no-important: 1 hex-notation: - - 2 + - 1 - style: uppercase indentation: @@ -48,7 +48,7 @@ rules: - margin ignore-custom-properties: true variable-for-property: - - 2 + - 1 - properties: - margin -- 2.17.1