-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
2,534 additions
and
2,439 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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"bracketSpacing": true, | ||
"printWidth": 120, | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 4, | ||
"trailingComma": "all", | ||
"useTabs": false | ||
} |
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,11 +1,25 @@ | ||
// Place your settings in this file to overwrite default and user settings. | ||
{ | ||
"editor.detectIndentation": false, | ||
"editor.formatOnSave": true, | ||
"editor.formatOnType": true, | ||
"editor.insertSpaces": true, | ||
"editor.tabSize": 4, | ||
"editor.wordWrapColumn": 120, | ||
"files.exclude": { | ||
"out": false // set this to true to hide the "out" folder with the compiled JS files | ||
"**/.DS_Store": true, | ||
"**/.git": true, | ||
"**/.hg": true, | ||
"**/.svn": true | ||
}, | ||
"search.exclude": { | ||
"out": true // set this to false to include "out" folder in search results | ||
}, | ||
"typescript.tsdk": "./node_modules/typescript/lib", // we want to use the TS server from our node_modules folder to control its version | ||
"editor.formatOnType": true | ||
"typescript.autoImportSuggestions.enabled": false, | ||
"typescript.format.insertSpaceAfterCommaDelimiter": true, | ||
"typescript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": true, | ||
"typescript.format.insertSpaceAfterKeywordsInControlFlowStatements": true, | ||
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBrackets": false, | ||
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false, | ||
"typescript.format.insertSpaceAfterSemicolonInForStatements": true, | ||
"typescript.format.insertSpaceBeforeAndAfterBinaryOperators": true, | ||
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": false, | ||
"typescript.format.placeOpenBraceOnNewLineForFunctions": false, | ||
"typescript.tsdk": "./node_modules/typescript/lib" | ||
} |
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
Oops, something went wrong.