From 900048b27aa37f14578357968056a7f8df3f1587 Mon Sep 17 00:00:00 2001 From: Colin Marshall Date: Sun, 6 Nov 2016 16:20:09 -0700 Subject: [PATCH] Added no-vendor-prefixes linter to sass-lint.yml In scss-lint the VendorPrefix linter was incorrectly titled VendorPrefixes so the rules did not migrate properly to sass-lint. --- .sass-lint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.sass-lint.yml b/.sass-lint.yml index d27dd692b..a62a8321a 100644 --- a/.sass-lint.yml +++ b/.sass-lint.yml @@ -1,6 +1,5 @@ # The following scss-lint Linters are not yet supported by sass-lint: # ElsePlacement, PropertyCount, SelectorDepth, UnnecessaryParentReference -# VendorPrefixes, Compass::* # # The following settings/values are unsupported by sass-lint: # Linter Indentation, option "allow_non_nested_indentation" @@ -85,6 +84,9 @@ rules: allow-element-with-id: false no-trailing-zero: 1 no-url-protocols: 1 + no-vendor-prefixes: + - 1 + - ignore-non-standard: true placeholder-in-extend: 1 placeholder-name-format: - 1 -- 2.47.2