mirror of
https://github.com/PowerShell/PowerShell.git
synced 2024-11-23 17:53:58 +08:00
cef7762d18
* Add standard set of vscode workspace setting files Add an extensions.json file that will prompt folks to install extensions that are recommended for this workspace (c++, c#, powershell, cmake (editing syntax) and markdown linter. Add settings.json to start to configure C# syntax, PoweShell trim trailing whitespace and configure the markdown lint extension. Update launch.json to provide ability to debug PowerShell scripts. * Clean up grammar * Instruct VSCode to ensure a final newline. If this is not wanted for certain file types, we can restrict this option to only specified file types.
12 lines
279 B
JSON
12 lines
279 B
JSON
{
|
|
// See http://go.microsoft.com/fwlink/?LinkId=827846
|
|
// for the documentation about the extensions.json format
|
|
"recommendations": [
|
|
"ms-vscode.cpptools",
|
|
"ms-vscode.csharp",
|
|
"ms-vscode.PowerShell",
|
|
"twxs.cmake",
|
|
"DavidAnson.vscode-markdownlint"
|
|
]
|
|
}
|