-
Notifications
You must be signed in to change notification settings - Fork 17
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
1 parent
c828f2f
commit 6e48130
Showing
4 changed files
with
261 additions
and
266 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,46 +1,36 @@ | ||
{ | ||
"editor.fontSize": 15, | ||
"editor.fontSize": 13, | ||
"editor.defaultFormatter": "dbaeumer.vscode-eslint", | ||
"editor.formatOnSave": true, | ||
"editor.autoIndent": "full", | ||
"editor.detectIndentation": true, | ||
"editor.tabSize": 4, | ||
|
||
// Controls if quick suggestions should show up while typing | ||
"editor.quickSuggestions": { | ||
"other": true, | ||
"comments": true, | ||
"strings": true | ||
}, | ||
|
||
// Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character. | ||
"editor.acceptSuggestionOnCommitCharacter": true, | ||
|
||
// Controls if suggestions should be accepted on 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. The value 'smart' means only accept a suggestion with Enter when it makes a textual change | ||
"editor.acceptSuggestionOnEnter": "on", | ||
|
||
// Controls the delay in ms after which quick suggestions will show up. | ||
"editor.quickSuggestionsDelay": 100, | ||
|
||
// Controls if suggestions should automatically show up when typing trigger characters | ||
"editor.suggestOnTriggerCharacters": true, | ||
|
||
// Controls if pressing tab inserts the best suggestion and if tab cycles through other suggestions | ||
"editor.tabCompletion": "on", | ||
|
||
// Controls whether sorting favours words that appear close to the cursor | ||
"editor.suggest.localityBonus": true, | ||
|
||
// Controls how suggestions are pre-selected when showing the suggest list | ||
"editor.suggestSelection": "recentlyUsed", | ||
|
||
// Enable word based suggestions | ||
"editor.wordBasedSuggestions": true, | ||
|
||
// Enable parameter hints | ||
"editor.parameterHints.enabled": true, | ||
"cSpell.words": [ | ||
"nestjs", | ||
"signin" | ||
], | ||
"other": true, | ||
"comments": true, | ||
"strings": true | ||
}, | ||
// Controls whether suggestions should be accepted on commit characters. For example, in JavaScript, the semi-colon (`;`) can be a commit character that accepts a suggestion and types that character. | ||
"editor.acceptSuggestionOnCommitCharacter": true, | ||
// Controls if suggestions should be accepted on 'Enter' - in addition to 'Tab'. Helps to avoid ambiguity between inserting new lines or accepting suggestions. The value 'smart' means only accept a suggestion with Enter when it makes a textual change | ||
"editor.acceptSuggestionOnEnter": "on", | ||
// Controls the delay in ms after which quick suggestions will show up. | ||
"editor.quickSuggestionsDelay": 100, | ||
// Controls if suggestions should automatically show up when typing trigger characters | ||
"editor.suggestOnTriggerCharacters": true, | ||
// Controls if pressing tab inserts the best suggestion and if tab cycles through other suggestions | ||
"editor.tabCompletion": "on", | ||
// Controls whether sorting favours words that appear close to the cursor | ||
"editor.suggest.localityBonus": true, | ||
// Controls how suggestions are pre-selected when showing the suggest list | ||
"editor.suggestSelection": "recentlyUsed", | ||
// Enable word based suggestions | ||
"editor.wordBasedSuggestions": true, | ||
// Enable parameter hints | ||
"editor.parameterHints.enabled": true, | ||
"cSpell.words": [ | ||
"nestjs", | ||
"signin" | ||
], | ||
} |
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
Oops, something went wrong.