File tree Expand file tree Collapse file tree 2 files changed +51
-1
lines changed
Expand file tree Collapse file tree 2 files changed +51
-1
lines changed Original file line number Diff line number Diff line change 1+ {
2+ // See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+ // Extension identifier format: ${publisher }.${name}. Example: vscode.csharp
4+
5+ // List of extensions which should be recommended for users of this workspace.
6+ "recommendations" : [
7+ " streetsidesoftware.code-spell-checker" ,
8+ " streetsidesoftware.code-spell-checker-dutch" ,
9+ " editorconfig.editorconfig" ,
10+ " dbaeumer.vscode-eslint" ,
11+ " esbenp.prettier-vscode"
12+ ],
13+
14+ // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
15+ "unwantedRecommendations" : []
16+ }
Original file line number Diff line number Diff line change 1- {}
1+ {
2+ /**
3+ * Code language formatting.
4+ */
5+ "[javascript]" : {
6+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
7+ },
8+ "[json]" : {
9+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
10+ },
11+ "[jsonc]" : {
12+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
13+ },
14+ "[yaml]" : {
15+ "editor.defaultFormatter" : " esbenp.prettier-vscode"
16+ },
17+
18+ /**
19+ * Auto format.
20+ */
21+ "editor.formatOnPaste" : true ,
22+ "editor.formatOnSave" : true ,
23+ "editor.formatOnType" : true ,
24+ "editor.codeActionsOnSave" : {
25+ "source.fixAll" : " explicit"
26+ },
27+ // Show ESLint errors in the editor. Languages should match supported files `.eslintrc.js`.
28+ "eslint.validate" : [
29+ " javascript" ,
30+ " json" ,
31+ " jsonc" ,
32+ " yaml" ,
33+ " markdown"
34+ ]
35+ }
You can’t perform that action at this time.
0 commit comments