Skip to content

Commit

Permalink
Explicitly point to Prettier config for linting tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
paulrobertlloyd committed Oct 23, 2024
1 parent 6bd61ca commit a83b671
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"start": "gulp",
"test": "npm run lint && npm run jest:ci",
"lint": "npm run lint:js && npm run lint:css && npm run lint:html && npm run prettier",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prettier": "prettier --check . --config .prettierrc.js",
"prettier:fix": "prettier --write . --config .prettierrc.js",
"lint:js": "eslint -c ./tests/linters/.eslintrc.js packages/components/**/*.js",
"lint:js:fix": "eslint --fix -c ./tests/linters/.eslintrc.js packages/components/**/*.js",
"lint:css": "stylelint -f verbose --config ./tests/linters/.stylelintrc.js packages/**/*.scss",
Expand Down

0 comments on commit a83b671

Please sign in to comment.