Browse Source

fix(style-lint): Run style lints against the scss

Rather than non-existant css.
renovate/lint-staged-8.x
Ben Woosley 7 years ago
parent
commit
5f1d2b40dc
No known key found for this signature in database GPG Key ID: 4D8CA4BA18040906
  1. 4
      package.json

4
package.json

@ -14,8 +14,8 @@
"lint": "cross-env NODE_ENV=development eslint --cache --format=node_modules/eslint-formatter-pretty .",
"lint-ci": "npm run lint && npm run flow",
"lint-fix": "npm run lint -- --fix",
"lint-styles": "stylelint app/*.css app/components/*.css --syntax scss",
"lint-styles-fix": "stylefmt -r app/*.css app/components/*.css",
"lint-styles": "stylelint app/*.scss app/components/*.scss --syntax scss",
"lint-styles-fix": "stylefmt -r app/*.scss app/components/*.scss",
"package": "npm run build && build --publish never",
"package-all": "npm run build && build -mwl",
"package-linux": "npm run build && build --linux",

Loading…
Cancel
Save