Update vscode settings

Recommend formatting and linting extension. Also, use 100 columns
for formatting.
This commit is contained in:
Andrew Eisenberg
2020-06-19 10:33:14 -07:00
parent 727d0db387
commit 52c6ee4477
2 changed files with 6 additions and 4 deletions

View File

@@ -3,8 +3,10 @@
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace. // List of extensions which should be recommended for users of this workspace.
"recommendations": [ "recommendations": [
"eamodio.tsl-problem-matcher" "eamodio.tsl-problem-matcher",
"dbaeumer.vscode-eslint",
"eternalphane.tsfmt-vscode"
], ],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace. // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [] "unwantedRecommendations": []
} }

View File

@@ -34,7 +34,7 @@
"resolvePluginsRelativeTo": "./extensions/ql-vscode" "resolvePluginsRelativeTo": "./extensions/ql-vscode"
}, },
"editor.formatOnSave": false, "editor.formatOnSave": false,
"prettier.singleQuote": true,
"typescript.preferences.quoteStyle": "single", "typescript.preferences.quoteStyle": "single",
"javascript.preferences.quoteStyle": "single" "javascript.preferences.quoteStyle": "single",
"editor.wordWrapColumn": 100
} }