]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Update SCSS-Lint to v0.49.0 (#20250)
authorGeremia Taglialatela <tagliala@users.noreply.github.com>
Fri, 8 Jul 2016 03:38:44 +0000 (05:38 +0200)
committerChris Rebert <github@chrisrebert.com>
Fri, 8 Jul 2016 03:38:44 +0000 (20:38 -0700)
SCSS-Lint 0.49.0 modifies Shorthand linter to report lint if a shorthand
of a length not specified in the allowed_shorthands option is used.

New defaults include "4" in the list of allowed shorthands, so we are changing our configuration accordingly.

Ref: https://github.com/brigade/scss-lint/commit/e283d1689699f581561fea344df3168128c46d7b

Gemfile
Gemfile.lock
scss/.scss-lint.yml

diff --git a/Gemfile b/Gemfile
index bdcbb0949f4b29abc4b7664ce0cf151b3c432cdf..fb4cea1506443844cb6a903bdb9951d1bcb58b8a 100644 (file)
--- a/Gemfile
+++ b/Gemfile
@@ -4,5 +4,5 @@ group :development, :test do
   gem 'jekyll', '~> 3.1.2'
   gem 'jekyll-redirect-from', '~> 0.10.0'
   gem 'jekyll-sitemap', '~> 0.10.0'
-  gem 'scss_lint', '~> 0.48.0'
+  gem 'scss_lint', '~> 0.49.0'
 end
index c4786fdf335cc1abe914ae3fc9bb35312f7852c1..ed510a095eb0f44c3cbb9f69e08f089f487ff2dd 100644 (file)
@@ -33,9 +33,9 @@ GEM
     rouge (1.11.1)
     safe_yaml (1.0.4)
     sass (3.4.22)
-    scss_lint (0.48.0)
+    scss_lint (0.49.0)
       rake (>= 0.9, < 12)
-      sass (~> 3.4.15)
+      sass (~> 3.4.20)
 
 PLATFORMS
   ruby
@@ -45,7 +45,7 @@ DEPENDENCIES
   jekyll (~> 3.1.2)
   jekyll-redirect-from (~> 0.10.0)
   jekyll-sitemap (~> 0.10.0)
-  scss_lint (~> 0.48.0)
+  scss_lint (~> 0.49.0)
 
 BUNDLED WITH
    1.12.5
index af837e4d038ade9ad3eff082a16fd6286948ef07..66c63335c639c3e35a82a7cc0cfd79ee03e49203 100644 (file)
@@ -457,7 +457,7 @@ linters:
 
   Shorthand:
     enabled: true
-    allowed_shorthands: [1, 2, 3]
+    allowed_shorthands: [1, 2, 3, 4]
 
   SingleLinePerProperty:
     enabled: false