Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 019ed43

Browse files
committed
pnpm: Add repo-wide prettier
#### Problem There are still prettier configurations for each JS package in the repo. #### Solution Create repo-wide `.prettierignore` and `.prettierrc` files
1 parent 97c0400 commit 019ed43

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.prettierignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
docs
2+
lib
3+
test-ledger
4+
node_modules
5+
dist
6+
generated
7+
.mypy_cache
8+
*.yml
9+
*.yaml
10+
*.md
11+
*.json

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"printWidth": 120,
3+
"trailingComma": "all",
4+
"tabWidth": 4,
5+
"semi": true,
6+
"singleQuote": true,
7+
"endOfLine": "lf",
8+
"arrowParens": "avoid"
9+
}
10+

0 commit comments

Comments
 (0)