38 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JSON
		
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			JSON
		
	
	
	
| {
 | ||
| 	"editor.insertSpaces": false,
 | ||
| 	"files.exclude": {
 | ||
| 		".git": true,
 | ||
| 		"build": true,
 | ||
| 		"dist": false
 | ||
| 	},
 | ||
| 	"search.exclude": {
 | ||
| 		"**/node_modules": true,
 | ||
| 		"**/bower_components": true,
 | ||
| 		"build/**": true,
 | ||
| 		"dist/**": true,
 | ||
| 		"i18n/**": true,
 | ||
| 		"extensions/**/out/**": true
 | ||
| 	},
 | ||
| 	"npm.exclude": "**/extensions/**",
 | ||
| 	"npm.packageManager": "npm",
 | ||
| 	"typescript.preferences.quoteStyle": "single",
 | ||
| 	"editor.quickSuggestions": {
 | ||
| 		"other": "inline",
 | ||
| 		"comments": "inline",
 | ||
| 		"strings": "inline"
 | ||
| 	},
 | ||
| 	"git.repositoryScanMaxDepth": 3,
 | ||
| 	"git.autofetch": true,
 | ||
| 	// 仅格式化修改行(通过git对比)
 | ||
| 	"editor.formatOnSaveMode": "modificationsIfAvailable",
 | ||
| 	// 收起虚拟文件夹
 | ||
| 	"explorer.fileNesting.expand": false,
 | ||
| 	"explorer.fileNesting.enabled": false,
 | ||
| 	"explorer.fileNesting.patterns": {
 | ||
| 		"README.md": ".editorconfig,.git*,.*rc,LICENSE,CHANGELOG.md,postcss*,*.sh,.*,envvars"
 | ||
| 	},
 | ||
| 	// 文件分隔符
 | ||
| 	"editor.wordSeparators": "`~!@#$%^&*()-=+[{]}\\|;:'\",.<>/?,。?:;“”【】!",
 | ||
| 	"editor.lightbulb.enabled": "on",
 | ||
| }
 |