-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathsettings.json
More file actions
21 lines (21 loc) · 884 Bytes
/
settings.json
File metadata and controls
21 lines (21 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
//-------- Files configuration --------
// When enabled, will trim trailing whitespace when you save a file.
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.insertSpaces": true,
"editor.tabSize": 4,
// -------- Search configuration --------
// Exclude the Output folder from search results.
"search.exclude": {
"Output/**": true
},
//-------- PowerShell Configuration --------
// Use a custom PowerShell Script Analyzer settings file for this workspace.
// Relative paths for this setting are always relative to the workspace root dir.
"powershell.scriptAnalysis.settingsPath": "ScriptAnalyzerSettings.psd1",
//----------Code Formatting ----------------
"powershell.codeFormatting.preset": "OTBS",
"editor.formatOnSave": true,
"powershell.scriptAnalysis.enable": true
}