@@ -10,14 +10,17 @@ module.exports = {
10
10
rules : {
11
11
'at-rule-empty-line-before' : null ,
12
12
'block-closing-brace-newline-before' : null , // fix bad formatting with "each()"
13
- 'color-function-notation' : 'legacy' ,
14
13
'declaration-block-trailing-semicolon' : null , // fix bad formatting with "each()"
15
14
indentation : null , // TODO change to "4" once https://github.com/fomantic/Fomantic-UI/pull/2593#discussion_r1045131096 is fixed
16
15
'max-line-length' : null ,
17
16
'no-descending-specificity' : null ,
18
17
'no-extra-semicolons' : null , // fix GH-1832 - workaround for wikimedia/less.php parser
19
18
'rule-empty-line-before' : null ,
20
19
20
+ // TODO rules to be removed/fixed in v2.10.0 as fixes are not compatible with IE11
21
+ 'alpha-value-notation' : 'number' , // https://caniuse.com/mdn-css_properties_opacity_percentages
22
+ 'color-function-notation' : 'legacy' , // https://caniuse.com/mdn-css_types_color_rgba_space_separated_parameters
23
+
21
24
// TODO
22
25
'string-quotes' : null , // 1676 errors
23
26
'at-rule-no-unknown' : null , // 1081 errors
@@ -32,7 +35,6 @@ module.exports = {
32
35
'keyframes-name-pattern' : null , // 50 errors
33
36
'property-no-vendor-prefix' : null , // 49 errors
34
37
'number-leading-zero' : null , // 49 errors
35
- 'alpha-value-notation' : null , // 32 errors
36
38
'block-no-empty' : null , // 25 errors
37
39
'selector-no-vendor-prefix' : null , // 19 errors
38
40
'selector-class-pattern' : null , // 19 errors
0 commit comments