forked from PowerShell/vscode-powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
26 lines (26 loc) · 807 Bytes
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Place your settings in this file to overwrite default and user settings.
{
"editor.tabSize": 4,
"editor.insertSpaces": true,
"files.trimTrailingWhitespace": true,
// Add a visual ruler for the typescript linting line length
"editor.rulers": [
120
],
"files.associations": {
// Use JSONC instead of JSON because (1) that's how VS Code interprets snippet files, and (2) it enables better source documentation.
"**/snippets/*.json": "jsonc"
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"logs/": true,
"out/": true
},
// Lock the TypeScript SDK path to the version we use
"typescript.tsdk": "./node_modules/typescript/lib",
// Ignore the MD rule:
"markdownlint.config": {
"MD024": false // no-duplicate-header
}
}