Update vscode settings
Recommend formatting and linting extension. Also, use 100 columns for formatting.
This commit is contained in:
6
.vscode/extensions.json
vendored
6
.vscode/extensions.json
vendored
@@ -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": []
|
||||||
}
|
}
|
||||||
|
|||||||
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user