Skip to content

Commit d469ee1

Browse files
committed
chore: put prettier configs in examples
1 parent c049b60 commit d469ee1

File tree

5 files changed

+48
-1
lines changed

5 files changed

+48
-1
lines changed

.prettierignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
pnpm-lock.yaml
2+
package-lock.json
3+
yarn.lock
4+
bun.lock
5+
bun.lockb
26
.next
37
.open-next
4-
node_modules
8+
node_modules
9+
dist
10+
build
11+
.wrangler

examples/hono/.prettierignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
pnpm-lock.yaml
2+
package-lock.json
3+
yarn.lock
4+
bun.lock
5+
bun.lockb
6+
.next
7+
.open-next
8+
node_modules
9+
dist
10+
build
11+
.wrangler

examples/hono/.prettierrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"tabWidth": 4,
3+
"printWidth": 120,
4+
"semi": true,
5+
"singleQuote": false,
6+
"trailingComma": "es5",
7+
"bracketSpacing": true,
8+
"arrowParens": "avoid"
9+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
pnpm-lock.yaml
2+
package-lock.json
3+
yarn.lock
4+
bun.lock
5+
bun.lockb
6+
.next
7+
.open-next
8+
node_modules
9+
dist
10+
build
11+
.wrangler

examples/opennextjs/.prettierrc

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

0 commit comments

Comments
 (0)