Skip to content
Snippets Groups Projects
vs-workspace.code-workspace 633 B
Newer Older
{
	"folders": [
		{
			"path": "."
		}
	],
	"settings": {
		"json.schemas": [
			{
				"fileMatch": ["/client/Skribbl.json"],
Ben Eltschig's avatar
Ben Eltschig committed
		],
		"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
	},
	"extensions": {
		"recommendations": [
			"nicolasparada.innerhtml",
			"gruntfuggly.todo-tree"