Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
vs-workspace.code-workspace 812 B
{
	"folders": [
		{
			"path": "."
		}
	],
	"settings": {
		"json.schemas": [
			{
				"fileMatch": [
					"/client/Skribbl.json"
				],
				"url": "./schema.json"
			}
		],
		"todo-tree.regex.regex": "(//|#|<!--|;|/\\*\\*?|^|\\*)\\s*($TAGS)",
		"todo-tree.filtering.excludeGlobs": [
			"**/node_modules",
			"**/lib"
		],
		"todo-tree.general.tags": [
			"BUG",
			"HACK",
			"FIXME",
			"TODO",
			"@todo"
		],
		"todo-tree.general.tagGroups": {
			"TODO": [
				"TODO",
				"@todo"
			]
		},
		"todo-tree.highlights.enabled": false,
		"typescript.tsserver.experimental.enableProjectDiagnostics": true,
		"editor.formatOnPaste": false,
		"editor.formatOnSave": false,
		"json.maxItemsComputed": 10000
	},
	"extensions": {
		"recommendations": [
			"nicolasparada.innerhtml",
			"gruntfuggly.todo-tree"
		]
	}
}