You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Controls the rendering size of tabs in characters. Accepted values: "auto", 2, 4, 6, etc. If set to "auto", the value will be guessed when a file is opened.
3
+
"editor.tabSize": 2,
4
+
// When enabled, will trim trailing whitespace when you save a file.
5
+
"files.trimTrailingWhitespace": true,
6
+
// Controls whether the editor should render whitespace characters
7
+
"editor.renderWhitespace": true,
8
+
"editor.insertSpaces": true,
9
+
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the file.exclude setting.
10
+
"files.exclude": {
11
+
"**/.git": true,
12
+
"**/.DS_Store": true,
13
+
"**/node_modules": true,
14
+
"**/lib": true
15
+
},
16
+
// Configure glob patterns for excluding files and folders in searches. Inherits all glob patterns from the file.exclude setting.
0 commit comments