Skip to content

Commit

Permalink
Add configuration defaults new in VSCode 1.10
Browse files Browse the repository at this point in the history
  • Loading branch information
wopian committed Mar 2, 2017
1 parent b5e18a2 commit 8e3dc12
Showing 1 changed file with 42 additions and 4 deletions.
46 changes: 42 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,50 @@
"scopeName": "text.binsource",
"path": "./out/syntax/binsource.tmlanguage"
}
]
],
"configurationDefaults": {
"[agc]": {
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"editor.tabSize": 8,
"editor.trimAutoWhitespace": true,
"editor.useTabStops": true,
"editor.wordSeparators": " ",
"files.trimTrailingWhitespace": true
},
"[ags]": {
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"editor.tabSize": 8,
"editor.trimAutoWhitespace": true,
"editor.useTabStops": true,
"editor.wordSeparators": " ",
"files.trimTrailingWhitespace": true
},
"[binsource]": {
"editor.detectIndentation": false,
"editor.insertSpaces": false,
"editor.tabSize": 8,
"editor.trimAutoWhitespace": true,
"editor.useTabStops": true,
"editor.wordSeparators": " ",
"files.trimTrailingWhitespace": true
},
"[argus]": {
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.rulers": [1, 8, 19, 32, 46, 60, 75, 80, 120],
"editor.tabSize": 8,
"editor.trimAutoWhitespace": true,
"editor.useTabStops": true,
"files.trimTrailingWhitespace": true
}
}
},
"engines": {
"vscode": ">=1.9.0",
"node": ">=6.0.0",
"npm": ">=3.8.6"
"vscode": ">=1.10.1",
"node": ">=6.5.0",
"npm": ">=3.10.3"
},
"devDependencies": {
"@types/chai": "3.4.35",
Expand Down

0 comments on commit 8e3dc12

Please sign in to comment.