Skip to content

Commit 3989abe

Browse files
committed
Added prettier (without formatting the repo)
1 parent 45d1aab commit 3989abe

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.prettierignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
tmp
2+
dist
3+
.changeset

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
"test": "jest && npm run test-types",
1414
"test-types": "tsc --noEmit -p ./tests/tsconfig.tests.json",
1515
"lint": "eslint ./src --ext .ts",
16-
"format": "prettier --write 'src/**/*.ts?(x)' && npm run lint -- --fix",
16+
"format": "prettier --write . && npm run lint -- --fix",
17+
"format-check": "prettier --check .",
1718
"typecheck": "tsc --noEmit",
1819
"clean": "rm -rf ./dist ./tmp",
1920
"build": "npm run clean && rollup --config && mv tmp/*.js dist",

0 commit comments

Comments
 (0)