Skip to content

Commit

Permalink
disallow all vendor prefixes
Browse files Browse the repository at this point in the history
* we prefer using autoprefixer in all projects
  • Loading branch information
kremalicious committed May 30, 2017
1 parent 7cb4940 commit 8f90397
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ module.exports = {
'media-feature-range-operator-space-after': 'always',
'media-feature-parentheses-space-inside': 'never',
'media-feature-colon-space-before': 'never',
'media-feature-colon-space-after': 'always'
'media-feature-colon-space-after': 'always',
'media-feature-name-no-vendor-prefix': true,
'at-rule-no-vendor-prefix': true,
'property-no-vendor-prefix': true,
'selector-no-vendor-prefix': true,
'value-no-vendor-prefix': true
}
}

0 comments on commit 8f90397

Please sign in to comment.