-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove fix-whitespace gulp command. Replaced by .vscode/settings.json (…
- Loading branch information
Showing
3 changed files
with
10 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,21 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"files.trimTrailingWhitespace": true, | ||
"files.exclude": { | ||
"out": false // set this to true to hide the "out" folder with the compiled JS files | ||
}, | ||
"search.exclude": { | ||
"out": true // set this to false to include "out" folder in search results | ||
}, | ||
"vim.insertModeKeyBindings": [ | ||
{ | ||
"before": ["j", "j"], | ||
"after": ["<esc>"] | ||
} | ||
], | ||
|
||
"vim.hlsearch": false, | ||
"editor.cursorStyle": "block", | ||
|
||
"typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version | ||
"editor.tabSize": 2, | ||
"editor.insertSpaces": true, | ||
"vim.useCtrlKeys": true, | ||
"files.trimTrailingWhitespace": true | ||
"vim.hlsearch": false, | ||
"vim.insertModeKeyBindings": [ | ||
{ | ||
"before": ["j", "j"], | ||
"after": ["<esc>"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters