forked from wet-boew/wet-boew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.csslintrc
31 lines (31 loc) · 975 Bytes
/
.csslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"adjoining-classes": false,
"box-model": false,
"box-sizing": false,
"compatible-vendor-prefixes": false,
"duplicate-background-images": false,
"duplicate-properties": false,
"empty-rules": false,
"fallback-colors": false,
"floats": false,
"font-sizes": false,
"gradients": false,
"headings": false,
"ids": false,
"important": false,
// Need due to use of "\9" hacks for oldIE
"known-properties": false,
"outline-none": false,
"overqualified-elements": false,
"qualified-headings": false,
"regex-selectors": false,
"selector-max-approaching": false,
// Some Bootstrap mixins end up listing all the longhand properties
"shorthand": false,
"text-indent": false,
"unique-headings": false,
"universal-selector": false,
"unqualified-attributes": false,
// Zeros are output by some of the Bootstrap mixins, but shouldn't be used in our code
"zero-units": false
}