Skip to content

Commit

Permalink
Temporarily allow webkit prefixes and allow overflow-scrolling
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Wheaton committed May 7, 2016
1 parent 32b6927 commit 8a20307
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .sass-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,23 @@ rules:
-
allow-single-line-rulesets: true

# Don't allow vendor prefixes, except for '-ms-*' so that we can target high contrast mode
# Need to enable these vendor prefixes so that it will allow -ms-high-contrast and -webkit-overflow-scrolling
# Would be best to find a way to exclude only those specific properties, not all prefixed properties
no-vendor-prefixes:
- 1
-
excluded-identifiers:
- 'ms'
- 'webkit'

# Enforce hex codes to full length
hex-length:
- 1
- style: long

# Allow properties that are unrecognized by the linter
no-misspelled-properties:
- 1
-
extra-properties:
- 'overflow-scrolling'

0 comments on commit 8a20307

Please sign in to comment.