Last active
August 29, 2023 18:56
-
-
Save rob3c/b1819330b9ea05eebb9c9caeb0c6b44f to your computer and use it in GitHub Desktop.
Visual Studio Code (vscode) Custom Settings
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
// Place your settings in this file to overwrite the default settings | |
{ | |
//-------- Editor configuration -------- | |
"editor.detectIndentation": false, | |
"editor.fontSize": 12, | |
"editor.tabSize": 4, | |
"editor.insertSpaces": true, | |
"editor.wrappingColumn": 93, | |
"editor.wrappingIndent": "none", | |
"editor.mouseWheelScrollSensitivity": 0.33, // one text line since 1 = 3 lines | |
"editor.quickSuggestions": false, | |
"editor.suggestOnTriggerCharacters": false, | |
"editor.renderWhitespace": true, | |
//-------- Window configuration -------- | |
"window.reopenFolders": "all", | |
//-------- Files configuration -------- | |
// Configure glob patterns for excluding files and folders. | |
"files.exclude": { | |
"**/.git": true, | |
"**/.svn": true, | |
"**/.DS_Store": true, | |
"**/*.pyc": true | |
}, | |
"files.associations": { | |
"*.ejs": "html", | |
"*.html.original": "html", | |
".stylelintrc": "json" | |
}, | |
"files.trimTrailingWhitespace": true, | |
//-------- File Explorer configuration -------- | |
// Maximum number of working files to show before scrollbars appear. | |
"explorer.autoReveal": false, | |
//-------- Search configuration -------- | |
"search.exclude": { | |
"**/bin": true, | |
"**/bin-webpack": true, | |
"**/data": true, | |
"**/node_modules": true, | |
"**/typings": true, | |
"**/client/hooks": true, | |
"**/client/node_modules": true, | |
"**/client/platforms": true, | |
"**/client/plugins": true, | |
"**/client/resources": true, | |
"**/client/SAVE-platforms": true, | |
"**/client/typings": true, | |
"**/server/node_modules": true, | |
"**/server/typings": true | |
}, | |
//-------- Git configuration -------- | |
//"git.autofetch": true, | |
//-------- Telemetry configuration -------- | |
"telemetry.enableCrashReporter": false, | |
"telemetry.enableTelemetry": false, | |
//-------- Sass configuration -------- | |
// Enables or disables all validations | |
"sass.validate": false, | |
"stylelint.enable": true, | |
//-------- JavaScript configuration -------- | |
// Controls how JavaScript IntelliSense works. | |
// Always include all words from the current document. | |
//"javascript.suggest.alwaysAllWords": false | |
//-------- TypeScript configuration -------- | |
//, "typescript.tsdk": "C:/Users/rob/AppData/Roaming/npm/node_modules/typescript/lib" | |
//-------- External Terminal -------- | |
"terminal.external.osxExec": "iTerm.app" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment