diff options
author | Jacob Schatz <jschatz@gitlab.com> | 2016-04-28 19:59:53 +0000 |
---|---|---|
committer | Jacob Schatz <jschatz@gitlab.com> | 2016-04-28 19:59:53 +0000 |
commit | ed08bfdc26557b4d364dc18299bb21a8be195be6 (patch) | |
tree | e39d88ed6b5a9929bb752f18f47a5234a5d2e07c /.scss-lint.yml | |
parent | 3fd0f5374447f0763c60d5b10b35d4a6f6981497 (diff) | |
parent | de95ab6257fcb38f109d9d1aea03618ae9981738 (diff) | |
download | gitlab-ce-ed08bfdc26557b4d364dc18299bb21a8be195be6.tar.gz |
Merge branch 'scss-url-linters' into 'master'
Enable the UrlFormat and UrlQuotes SCSS Linters.
There were no lints to fix for this one, so it's just preventative.
UrlFormat: URLs should be valid and not contain protocols or domain names.
UrlQuotes: URLs should always be enclosed within quotes.
cc: @jschatz1
See merge request !3770
Diffstat (limited to '.scss-lint.yml')
-rw-r--r-- | .scss-lint.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.scss-lint.yml b/.scss-lint.yml index 9bfc18b9698..66f9975d4ce 100644 --- a/.scss-lint.yml +++ b/.scss-lint.yml @@ -244,11 +244,11 @@ linters: # URLs should be valid and not contain protocols or domain names. UrlFormat: - enabled: false + enabled: true # URLs should always be enclosed within quotes. UrlQuotes: - enabled: false + enabled: true # Properties, like color and font, are easier to read and maintain # when defined using variables rather than literals. |