Skip to content

Commit

Permalink
ci: run prettier against everything
Browse files Browse the repository at this point in the history
  • Loading branch information
kanadgupta committed Aug 14, 2023
1 parent 190a6c7 commit 4ed7f49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@
},
"scripts": {
"build": "tsc",
"lint": "npm run lint:types; npm run lint:js; npm run lint:docs",
"lint": "npm run lint:types; npm run lint:js; npm run lint:docs; npm run prettier",
"lint:js": "eslint . --ext .js,.ts",
"lint:docs": "npx -y alex .",
"lint:types": "tsc --noEmit",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"prepare": "husky install",
"pretest": "npm run lint",
"prettier": "prettier --list-different \"./**/**.{js,ts,md}\"",
"prettier:fix": "prettier --list-different --write \"./**/**.{js,ts,md}\"",
"prettier": "prettier --check .",
"prettier:fix": "prettier --check --write .",
"test": "vitest --coverage",
"watch": "tsc --watch"
},
Expand Down

0 comments on commit 4ed7f49

Please sign in to comment.