|
| 1 | +{ |
| 2 | + "files.exclude": { |
| 3 | + "**/.git": true, |
| 4 | + "**/.DS_Store": true, |
| 5 | + "**/jspm_packages": true, |
| 6 | + "**/node_modules": true, |
| 7 | + "**/.zip": true, |
| 8 | + "**/.sh": true, |
| 9 | + "**/.idea": true |
| 10 | + }, |
| 11 | + "search.exclude": { |
| 12 | + "**/node_modules": true, |
| 13 | + "**/bower_components": true |
| 14 | + }, |
| 15 | + "files.watcherExclude": { |
| 16 | + "**/.git/objects/**": true, |
| 17 | + "**/.git/subtree-cache/**": true, |
| 18 | + "**/node_modules/*/**": true |
| 19 | + }, |
| 20 | + "editor.formatOnSave": false, |
| 21 | + "editor.formatOnPaste": false, |
| 22 | + "editor.renderWhitespace": "all", |
| 23 | + "editor.fontSize": 16, |
| 24 | + "editor.tabSize": 2, |
| 25 | + "editor.multiCursorModifier": "alt", |
| 26 | + "editor.wordWrap": "on", |
| 27 | + "editor.insertSpaces": true, |
| 28 | + "files.encoding": "utf8", |
| 29 | + "[typescript]": { |
| 30 | + "editor.formatOnSave": false, |
| 31 | + "editor.formatOnPaste": false |
| 32 | + }, |
| 33 | + "[javascript]": { |
| 34 | + "editor.formatOnSave": false, |
| 35 | + "editor.formatOnPaste": false, |
| 36 | + "editor.renderWhitespace": "all", |
| 37 | + "editor.foldingStrategy": "indentation" |
| 38 | + // "editor.foldingStrategy": "auto" |
| 39 | + }, |
| 40 | + "[markdown]": { |
| 41 | + "editor.formatOnSave": false, |
| 42 | + "editor.renderWhitespace": "all", |
| 43 | + "editor.acceptSuggestionOnEnter": "off" |
| 44 | + }, |
| 45 | + "[html]": { |
| 46 | + "editor.formatOnSave": false, |
| 47 | + "editor.formatOnPaste": false, |
| 48 | + "editor.renderWhitespace": "all", |
| 49 | + "editor.acceptSuggestionOnEnter": "off" |
| 50 | + }, |
| 51 | + "files.associations": { |
| 52 | + "*.jsx": "javascriptreact", |
| 53 | + "*.js": "javascriptreact" |
| 54 | + }, |
| 55 | + "editor.snippetSuggestions": "top", |
| 56 | + // When enabled, typing /** triggers documentation automatically. |
| 57 | + "docthis.automaticForBlockComments": true, |
| 58 | + // When enabled, type information is added to comment tags. |
| 59 | + "docthis.includeTypes": true, |
| 60 | + // When enabled, memberOf information is added to comment tags on class members. |
| 61 | + "docthis.includeMemberOfOnClassMembers": true, |
| 62 | + // When enabled, memberOf information is added to comment tags on interface members. |
| 63 | + "docthis.includeMemberOfOnInterfaceMembers": true, |
| 64 | + // When enabled, JSDoc comments for functions and methods will include @description. |
| 65 | + "docthis.includeDescriptionTag": true, |
| 66 | + // When enabled, hungarian notation will be used as a type hint. |
| 67 | + "docthis.enableHungarianNotationEvaluation": true, |
| 68 | + // When enabled, will use names of params & methods as type hints. |
| 69 | + "docthis.inferTypesFromNames": true, |
| 70 | + // When enabled, will add the @author tag. |
| 71 | + "docthis.includeAuthorTag": true, |
| 72 | + // When docthis.includeAuthorTag is enabled, will add @author tag with this value. |
| 73 | + "docthis.authorName": "xgqfrms", |
| 74 | + // HTML & overwrite User settings.json |
| 75 | + "html.format.extraLiners": "", |
| 76 | + "html.format.enable": false, |
| 77 | + "html.format.contentUnformatted": "body, div, section, script, pre,code,textarea", |
| 78 | + // "telemetry.enableCrashReporter": false, |
| 79 | + // "telemetry.telemetryLevel": off, |
| 80 | + "gitlens.advanced.telemetry.enabled": false, |
| 81 | + "telemetry.enableTelemetry": false, |
| 82 | + |
| 83 | +} |
0 commit comments