-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtinybox.code-workspace
More file actions
102 lines (102 loc) · 3.37 KB
/
Copy pathtinybox.code-workspace
File metadata and controls
102 lines (102 loc) · 3.37 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"folders": [
{
"path": "."
},
{
"path": "app"
},
{
"path": "api"
},
{
"path": "libtb"
},
{
"path": "resolver"
}
],
"settings": {
"[git-commit]": {
"rewrap.autoWrap.enabled": true,
"rewrap.wrappingColumn": 72
},
"git.useEditorAsCommitInput": true,
"python.testing.pytestArgs": ["--ignore=."],
"python.testing.pytestEnabled": false, // Note that if this is set to `true` in a monorepo - where the root directory does not contain its own Python project - you will get test discovery errors (and possibly extension crashes).
// Completely obscure from file explorer
"files.exclude": {
"**/.git": false,
"**/.venv": false,
"**/.hatch": false,
"**/.ruff_cache": true,
"**/.stfolder": true,
"**/.stignore": true,
"**/__pycache__": true,
"**/*.egg-info": true,
"**/*.ipynb_checkpoints": true,
"**/*.tmp": true,
"**/*.temp": true
},
// Exclude from searches within the repo
"search.exclude": {
"**/working": true,
"**/.git": true,
"**/.venv": true,
"**/.hatch": true,
"**/.ruff_cache": true,
"**/.stfolder": true,
"**/.stignore": true,
"**/node_modules/*/**": true,
"**/*.geojson": true,
"**/*.zip": true,
"**/*.csv": true,
"**/*.tmp": true,
"**/*.temp": true
},
// Exclude from file watcher processes
"files.watcherExclude": {
"**/working": true,
"**/.venv": true,
"**/.hatch": true,
"**/.ruff_cache": true,
"**/.stfolder": true,
"**/.stignore": true,
"**/.git/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**.sqlite": true,
"**.sqlite-journal": true,
"**/*.geojson": true,
"**/*.zip": true,
"**/*.csv": true,
"**/*.tmp": true,
"**/*.temp": true
},
"prettier.singleAttributePerLine": true,
"[html][django-html][handlebars][hbs][mustache][jinja][jinja-html][nj][njk][nunjucks][twig]": {
"editor.defaultFormatter": "monosans.djlint"
},
"eslint.validate": ["javascript", "json"],
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
// "json.schemas": [
// {
// "fileMatch": ["/tools/web/world/static/world/map_layers.json"],
// "url": "./tools/web/world/static/world/map_layers.schema.json"
// },
// {
// "fileMatch": ["/tools/web/world/static/world/map_sources.json"],
// "url": "./tools/web/world/static/world/map_sources.schema.json"
// },
// {
// "fileMatch": [
// "/tools/web/world/static/world/paint_styles.json"
// ],
// "url": "./tools/web/world/static/world/paint_styles.schema.json"
// }
// ]
}
}