|
1 | 1 | { |
2 | | - "mochaExplorer.env": { |
3 | | - "NODE_ENV": "test" |
4 | | - }, |
5 | | - "webhint.enableTelemetry": "disabled", |
6 | | - "typescript.preferences.importModuleSpecifier": "relative", |
7 | | - "javascript.preferences.importModuleSpecifier": "relative", |
8 | | - "importSorter.generalConfiguration.sortOnBeforeSave": true, |
9 | | - "importSorter.generalConfiguration.sortImportsInDirectory": true, |
10 | | - "typescript.updateImportsOnFileMove.enabled": "always", |
11 | | - "editor.formatOnSave": true, |
12 | 2 | "[jsonc]": { |
13 | 3 | "editor.defaultFormatter": "esbenp.prettier-vscode" |
14 | | - } |
| 4 | + }, |
| 5 | + "editor.formatOnSave": true, |
| 6 | + "editor.renderWhitespace": "all", |
| 7 | + // Configure glob patterns for excluding files and folders. |
| 8 | + // For example, the files explorer decides which files and folders to show |
| 9 | + // or hide based on this setting. |
| 10 | + // Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options). |
| 11 | + "files.exclude": { |
| 12 | + "**/.git": true, |
| 13 | + "**/.svn": true, |
| 14 | + "**/.hg": true, |
| 15 | + "**/CVS": true, |
| 16 | + "**/.DS_Store": true |
| 17 | + }, |
| 18 | + // Configure glob patterns of file paths to exclude from file watching. |
| 19 | + // Patterns must match on absolute paths |
| 20 | + // (i.e. prefix with ** or the full path to match properly). |
| 21 | + // Changing this setting requires a restart. |
| 22 | + // When you experience Code consuming lots of cpu time on startup, |
| 23 | + // you can exclude large folders to reduce the initial load. |
| 24 | + "files.watcherExclude": { |
| 25 | + "**/.git/objects/**": true, |
| 26 | + "**/.git/subtree-cache/**": true, |
| 27 | + "**/node_modules/**": true, |
| 28 | + "**/tmp/**": true, |
| 29 | + "**/bower_components/**": true, |
| 30 | + "**/dist/**": true |
| 31 | + }, |
| 32 | + // Configure glob patterns for excluding files and folders in searches. |
| 33 | + // Inherits all glob patterns from the `files.exclude` setting. |
| 34 | + // Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options). |
| 35 | + "search.exclude": { |
| 36 | + "**/node_modules": true, |
| 37 | + "**/bower_components": true |
| 38 | + }, |
| 39 | + "javascript.preferences.importModuleSpecifier": "relative", |
| 40 | + "javascript.updateImportsOnFileMove.enabled": "always", |
| 41 | + "typescript.preferences.importModuleSpecifier": "relative", |
| 42 | + "typescript.updateImportsOnFileMove.enabled": "always" |
15 | 43 | } |
0 commit comments