@@ -47,12 +47,12 @@ module.exports = class ClarkPlugin extends Plugin {
4747 // Iterate over lists with @each
4848 require ( 'postcss-advanced-variables' ) ( {
4949 disable : '@mixin, @include, @content' ,
50- unresolved : 'ignore'
50+ unresolved : 'ignore' ,
5151 } ) ,
5252
5353 // https://github.com/jonathantneal/postcss-short
5454 // Shorthand properties
55- require ( 'postcss-short' )
55+ require ( 'postcss-short' ) ,
5656
5757 // https://github.com/simonsmith/postcss-property-lookup
5858 // Lookup property values of the current rule set, e.g. padding-top: @margin-bottom
@@ -100,15 +100,15 @@ module.exports = class ClarkPlugin extends Plugin {
100100 'matches-pseudo-class' : true ,
101101 'has-pseudo-class' : true ,
102102
103- 'custom-selectors' : true
103+ 'custom-selectors' : true ,
104104 } ,
105105
106106 autoprefixer : {
107107 // We don't manually apply prefixes unless they are really necessary,
108108 // e.g.when dealing with quirks, therefore we disable removing them.
109- remove : false
110- }
111- } )
109+ remove : false ,
110+ } ,
111+ } ) ,
112112 ] ;
113113
114114 for ( const [ stage , plugins ] of Object . entries ( { before, after } ) ) {
@@ -119,8 +119,8 @@ module.exports = class ClarkPlugin extends Plugin {
119119 postcssOptions : {
120120 // https://github.com/postcss/postcss-scss
121121 // This allows you to use inline comments, like this one here.
122- parser : require ( 'postcss-scss' )
123- }
122+ parser : require ( 'postcss-scss' ) ,
123+ } ,
124124 } ;
125125 }
126126} ;
0 commit comments