Skip to content

Commit

Permalink
Issue #3414203 by joshua1234511: Eslint fails in Starterkit "lint" sc…
Browse files Browse the repository at this point in the history
…ript if there are no JS files in components. (#1205)

Co-authored-by: Joshua Fernandes <“joshua.1234511@yahoo.in”>
  • Loading branch information
joshua-salsadigital and Joshua Fernandes committed Jan 22, 2024
1 parent 90cfd27 commit 3d2975a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"storybook-full": "export NODE_OPTIONS=--openssl-legacy-provider && export STORYBOOK_FULL=1 && npm run gulp:build && concurrently --raw=true \"npm run gulp:watch\" \"start-storybook -s .storybook/static\"\n",
"gulp:build": "gulp",
"gulp:watch": "gulp watch",
"lint": "eslint ./components ./.storybook ./webpack && stylelint 'components/**/*.scss'",
"lint": "eslint --no-error-on-unmatched-pattern ./components ./.storybook ./webpack && stylelint 'components/**/*.scss'",
"lint:fix": "eslint ./components ./.storybook ./webpack --fix && stylelint 'components/**/*.scss' --fix",
"dist": "export NODE_OPTIONS=--openssl-legacy-provider && npm run gulp:build && webpack --config ./webpack/webpack.prod.js",
"dist:dev": "export NODE_OPTIONS=--openssl-legacy-provider && npm run gulp:build && webpack --config ./webpack/webpack.dev.js",
Expand Down

0 comments on commit 3d2975a

Please sign in to comment.