-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyclipper2.code-workspace
More file actions
88 lines (88 loc) · 1.96 KB
/
pyclipper2.code-workspace
File metadata and controls
88 lines (88 loc) · 1.96 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
{
"folders": [
{
"path": "."
}
],
"settings": {
// ensures we have basic type checking for pylance
"python.analysis.typeCheckingMode": "basic",
"files.exclude": {
"**/__pycache__/**": true,
},
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff",
},
"notebook.formatOnSave.enabled": true,
"C_Cpp.default.compileCommands": "/Users/olammas/Documents/projects/pyclipper2/builddir/compile_commands.json",
"C_Cpp.default.configurationProvider": "mesonbuild.mesonbuild",
"files.associations": {
"vector": "cpp",
"__bit_reference": "cpp",
"__split_buffer": "cpp",
"array": "cpp",
"cmath": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"cwchar": "cpp",
"deque": "cpp",
"initializer_list": "cpp",
"ios": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"limits": "cpp",
"locale": "cpp",
"new": "cpp",
"queue": "cpp",
"stdexcept": "cpp",
"streambuf": "cpp",
"string": "cpp",
"string_view": "cpp",
"typeinfo": "cpp",
"unordered_map": "cpp",
"__hash_table": "cpp",
"__locale": "cpp",
"__node_handle": "cpp",
"__verbose_abort": "cpp",
"bitset": "cpp",
"cctype": "cpp",
"clocale": "cpp",
"complex": "cpp",
"cstdarg": "cpp",
"ctime": "cpp",
"cwctype": "cpp",
"execution": "cpp",
"memory": "cpp",
"mutex": "cpp",
"optional": "cpp",
"print": "cpp",
"ratio": "cpp",
"sstream": "cpp",
"stack": "cpp",
"variant": "cpp",
"algorithm": "cpp"
}
},
"extensions": {
"recommendations": [
// Python tools
"ms-python.python",
"ms-python.vscode-pylance",
"ms-toolsai.jupyter",
"charliermarsh.ruff",
// Developer tools
"eamodio.gitlens",
"nefrob.vscode-just-syntax",
"tamasfe.even-better-toml",
"usernamehw.errorlens",
]
}
}