Skip to content

Commit 52c6ee4

Browse files
committed
Update vscode settings
Recommend formatting and linting extension. Also, use 100 columns for formatting.
1 parent 727d0db commit 52c6ee4

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.vscode/extensions.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@
33
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
44
// List of extensions which should be recommended for users of this workspace.
55
"recommendations": [
6-
"eamodio.tsl-problem-matcher"
6+
"eamodio.tsl-problem-matcher",
7+
"dbaeumer.vscode-eslint",
8+
"eternalphane.tsfmt-vscode"
79
],
810
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
911
"unwantedRecommendations": []
10-
}
12+
}

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"resolvePluginsRelativeTo": "./extensions/ql-vscode"
3535
},
3636
"editor.formatOnSave": false,
37-
"prettier.singleQuote": true,
3837
"typescript.preferences.quoteStyle": "single",
39-
"javascript.preferences.quoteStyle": "single"
38+
"javascript.preferences.quoteStyle": "single",
39+
"editor.wordWrapColumn": 100
4040
}

0 commit comments

Comments
 (0)