aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: d86374b9ea3a897c0848e066d4b641fb78059933 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
	"files.exclude": {
		"**/.git": true,
		"**/.svn": true,
		"**/.hg": true,
		"**/CVS": true,
		"**/.DS_Store": true,
		"dist": false,
		".pnp.js": false,
		"**/node_modules": true
	},
	"javascript.preferences.importModuleSpecifier": "project-relative",
	"typescript.preferences.importModuleSpecifier": "project-relative",
	"search.exclude": {
		"**/.yarn": true,
		"**/.pnp.*": true,
		"**/node_modules": true,
		"neu-item-repo": true,
		"neu-item-repo-dangerous": true
	},
	"editor.codeActionsOnSave": {
		"source.organizeImports": true,
		// "source.fixAll.eslint": true,
		"source.format": true
	},
	"diffEditor.wordWrap": "on",
	"editor.insertSpaces": false,
	"editor.wordWrap": "on",
	"editor.tabSize": 2,
	"prettier.configPath": ".prettierrc.json",
	"prettier.prettierPath": "node_modules/prettier",
	"prettier.withNodeModules": true,
	"prettier.useEditorConfig": false,
	// "typescript.tsdk": ".yarn/sdks/typescript/lib",
	"typescript.tsdk": "node_modules/typescript/lib",
	"typescript.enablePromptUseWorkspaceTsdk": true,
	"javascript.preferences.importModuleSpecifierEnding": "js",
	"typescript.preferences.importModuleSpecifierEnding": "js",
	"discord.removeDetails": false,
	"discord.removeLowerDetails": false,
	"discord.removeRemoteRepository": false,
	"discord.removeTimestamp": false
}