Skip to content

Commit 6739c76

Browse files
committed
Add .editorconfig file, add prettier devcontainer
1 parent 0297b26 commit 6739c76

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

.devcontainer/devcontainer.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,14 @@
33
{
44
"name": "Node.js & TypeScript",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6-
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye"
6+
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye",
7+
"customizations": {
8+
"vscode": {
9+
"extensions": [
10+
"esbenp.prettier-vscode"
11+
]
12+
}
13+
}
714

815
// Features to add to the dev container. More info: https://containers.dev/features.
916
// "features": {},

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*.ts]
4+
indent_style = space
5+
indent_size = 4
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
end_of_line = lf
9+
charset = utf-8

turbo.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
"persistent": true
1515
},
1616
"lint": {},
17-
"format": {},
17+
"format": {
18+
"cache": true
19+
},
1820
"test": {},
1921
"test:watch": {
2022
"cache": false

0 commit comments

Comments
 (0)