The repo for Purrform's main BigCommerce store.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: update stylelint configuration to target specific SCSS files

+3 -8
+1 -6
grunt/stylelint.js
··· 7 7 reportNeedlessDisables: false, 8 8 fix: false, 9 9 }, 10 - src: [ 11 - 'assets/scss/**/*.scss', 12 - '!assets/scss/vendor/**/*.scss', 13 - '!assets/scss/invoice.scss', 14 - '!assets/scss/maintenance.scss', 15 - ], 10 + src: ['assets/scss/custom.scss', 'assets/scss/custom/**/*.scss'], 16 11 };
+2 -2
package.json
··· 71 71 "buildDev": "npx webpack --config webpack.dev.js", 72 72 "lighthouse": "npx lighthouse --config-path=lighthouse-config.js --quiet --output json --chrome-flags=\"--headless\" $URL | jq '.audits | map_values(.rawValue)'", 73 73 "test": "npx jest", 74 - "stylelint": "npx stylelint **/*.scss", 75 - "stylelint:fix": "npx stylelint --fix **/*.scss" 74 + "stylelint": "stylelint 'assets/scss/custom.scss' 'assets/scss/custom/**/*.scss'", 75 + "stylelint:fix": "stylelint --fix 'assets/scss/custom.scss' 'assets/scss/custom/**/*.scss'" 76 76 } 77 77 }