@@ -7,5 +7,22 @@ module.exports = {
77 rules : {
88 'no-descending-specificity' : null ,
99 'order/properties-alphabetical-order' : true ,
10+ 'scale-unlimited/declaration-strict-value' : [ [ 'color' , 'background-color' , 'font-weight' , 'font-size' ] ] ,
11+ 'declaration-no-important' : true ,
12+ 'unit-allowed-list' : [ 'rem' , { ignoreFunctions : [ 'rem' ] , severity : 'warning' } ] ,
13+ // TODO: This should move to error in the future.
14+ 'max-nesting-depth' : [ 3 , { severity : 'warning' } ] ,
15+ // TODO: This should move to error in the future.
16+ 'selector-max-attribute' : [ 1 , { severity : 'warning' } ] ,
17+ // TODO: This should move to error in the future.
18+ 'selector-max-combinators' : [ 3 , { severity : 'warning' } ] ,
19+ // TODO: This should move to error in the future.
20+ 'selector-max-id' : [ 1 , { severity : 'warning' } ] ,
21+ // TODO: This should move to error in the future.
22+ 'selector-max-pseudo-class' : [ 2 , { severity : 'warning' } ] ,
23+ // TODO: This should move to error in the future.
24+ 'selector-max-type' : [ 1 , { severity : 'warning' } ] ,
25+ // TODO: This should move to error in the future.
26+ 'selector-max-universal' : [ 1 , { severity : 'warning' } ] ,
1027 } ,
1128} ;
0 commit comments