File tree 4 files changed +33
-1
lines changed
4 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 16
16
"source.organizeImports" : " always"
17
17
}
18
18
},
19
+ "[javascript]" : {
20
+ "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
21
+ "editor.formatOnSave" : true ,
22
+ },
23
+ "[typescript]" : {
24
+ "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
25
+ "editor.formatOnSave" : true ,
26
+ "editor.codeActionsOnSave" : {
27
+ "source.fixAll" : " always" ,
28
+ "source.organizeImports" : " always"
29
+ },
30
+ },
31
+ "[typescriptreact]" : {
32
+ "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
33
+ "editor.formatOnSave" : true ,
34
+ "editor.codeActionsOnSave" : {
35
+ "source.fixAll" : " always" ,
36
+ "source.organizeImports" : " always"
37
+ },
38
+ },
39
+ "[css]" : {
40
+ "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
41
+ "editor.formatOnSave" : true ,
42
+ },
19
43
"isort.args" : [" --profile" , " black" ],
20
44
"ruff.nativeServer" : true
21
45
}
Original file line number Diff line number Diff line change
1
+ .next
2
+ pnpm-lock.yaml
3
+ public
Original file line number Diff line number Diff line change
1
+ {
2
+ "printWidth": 120,
3
+ "plugins": ["prettier-plugin-tailwindcss"]
4
+ }
Original file line number Diff line number Diff line change 4
4
"dev" : " next dev" ,
5
5
"build" : " next build" ,
6
6
"start" : " next start" ,
7
- "lint" : " next lint"
7
+ "lint" : " next lint" ,
8
+ "format" : " prettier --cache -w ."
8
9
},
9
10
"dependencies" : {
10
11
"next" : " 14.2.5" ,
You can’t perform that action at this time.
0 commit comments