-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathsettings.json
More file actions
62 lines (62 loc) · 1.83 KB
/
Copy pathsettings.json
File metadata and controls
62 lines (62 loc) · 1.83 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
{
"files.insertFinalNewline": true,
"files.eol": "\n",
"json.schemas": [
{
"fileMatch": [
"/assets/resource/**/*.json",
"/install/resource/**/*.json",
"!/assets/resource/data/**/**.json",
"!/install/resource/data/**/**.json",
"!/assets/resource/tasks/**/**.json",
"!/install/resource/tasks/**/**.json"
],
"url": "/deps/tools/pipeline.schema.json"
},
{
"fileMatch": [
"/assets/interface.json",
"/install/interface.json"
],
"url": "/deps/tools/interface.schema.json"
},
{
"fileMatch": [
"/assets/resource/tasks/**/*.json",
"/install/resource/tasks/**/*.json"
],
"url": "/deps/tools/interface_import.schema.json"
},
{
"fileMatch": [
"/install/config/maa_pi_config.json"
],
"url": "/deps/tools/interface_config.schema.json"
}
],
"files.exclude": {
"__pycache__": true
},
"files.associations": {
"**/assets/**/*.json": "jsonc"
},
"[json][jsonc]": {
"editor.formatOnSave": true,
"editor.insertSpaces": true,
"editor.tabSize": 4,
"editor.indentSize": "tabSize"
},
"[python]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.black-formatter"
},
"[markdown]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
},
"markdownlint.config": {
"MD028": false
},
"python-envs.defaultEnvManager": "ms-python.python:venv",
"python-envs.defaultPackageManager": "ms-python.python:pip"
}