Skip to content

Commit

Permalink
prettier is now part of eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
boopathi committed Sep 13, 2024
1 parent 3657bd6 commit 01864d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
run: yarn install --offline

- name: Format and Lint check
run: yarn check-format && yarn check-tsc && yarn lint && yarn build && yarn check-exports
run: yarn check-tsc && yarn lint && yarn build && yarn check-exports

- name: Tests and Coverage
run: yarn test --coverage
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,11 @@
"benchmark": "NODE_ENV=production ./src/__benchmarks__/benchmarks.ts",
"build": "yarn tsup-node",
"check-exports": "attw --pack .",
"check-format": "prettier -l 'src/**/*.ts'",
"check-tsc": "tsc --noEmit",
"codecov": "codecov",
"eslint": "eslint .",
"format": "prettier --write 'src/**/*.ts'",
"lint-fix": "yarn eslint --fix",
"lint": "yarn eslint",
"lint-fix": "yarn lint --fix",
"lint": "eslint .",
"mutation-test": "stryker run",
"precommit": "lint-staged",
"prepublishOnly": "yarn && yarn build",
Expand Down

0 comments on commit 01864d5

Please sign in to comment.