aboutsummaryrefslogtreecommitdiff
path: root/.vscode/settings.json
blob: 368b5f1f9f836e0fca46fe5292a4a08ebbc11782 (plain) (blame)
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
{
  "git.autoRepositoryDetection": "openEditors",
  "search.quickOpen.includeSymbols": false,
  "search.seedWithNearestWord": true,
  "search.smartCase": true,
  "search.exclude": {},
  "search.followSymlinks": false,
  "search.useIgnoreFiles": true,
  "zig.buildOnSave": false,
  "zig.buildArgs": ["obj", "-Dfor-editor"],
  "zig.buildOption": "build",
  "zig.buildFilePath": "${workspaceFolder}/build.zig",
  "zig.zls.path": "${workspaceFolder}/zls/zig-out/bin/zls",
  "[zig]": {
    "editor.tabSize": 4,
    "editor.useTabStops": false,
    "editor.defaultFormatter": "ziglang.vscode-zig",
    "editor.formatOnSave": true
  },
  "[ts]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    "editor.formatOnSave": true
  },
  "[js]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    "editor.formatOnSave": true
  },
  "[jsx]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    "editor.formatOnSave": true
  },
  "[tsx]": {
    "editor.defaultFormatter": "esbenp.prettier-vscode",
    "editor.formatOnSave": true
  },
  "[yaml]": {
    "editor.formatOnSave": true
  },
  "zig.beforeDebugCmd": "make build-unit ${file} ${filter} ${bin}",
  "zig.testCmd": "make test ${file} ${filter} ${bin}",
  "[markdown]": {
    "editor.unicodeHighlight.ambiguousCharacters": false,
    "editor.unicodeHighlight.invisibleCharacters": false,
    "diffEditor.ignoreTrimWhitespace": false,
    "editor.defaultFormatter": "yzhang.markdown-all-in-one",
    "editor.formatOnSave": true,
    "editor.wordWrap": "on",
    "editor.quickSuggestions": {
      "comments": "off",
      "strings": "off",
      "other": "off"
    }
  },
  "lldb.verboseLogging": false,
  "files.exclude": {
    "**/.git": true,
    "**/.svn": true,
    "**/.hg": true,
    "**/CVS": true,
    "**/.DS_Store": true,
    "**/Thumbs.db": true,
    "**/*.xcworkspacedata": true,
    "**/*.xcscheme": true,
    "**/*.pem": true,
    "**/*.xcodeproj": true,
    "test/snapshots": true,
    "test/snapshots-no-hmr": true,
    "src/bun.js/WebKit": true,
    "src/deps/libarchive": true,
    "src/deps/mimalloc": true,
    "src/deps/s2n-tls": true,
    "src/deps/boringssl": true,
    "src/deps/openssl": true,
    "src/deps/uws": true,
    "src/deps/zlib": true,
    "src/deps/lol-html": true,
    "src/deps/c-ares": true,
    "src/deps/tinycc": true,
    "test/snippets/package-json-exports/_node_modules_copy": true
  },
  "C_Cpp.files.exclude": {
    "**/.vscode": true,
    "src/bun.js/WebKit/JSTests": true,
    "src/bun.js/WebKit/Tools": true,
    "src/bun.js/WebKit/WebDriverTests": true,
    "src/bun.js/WebKit/WebKit.xcworkspace": true,
    "src/bun.js/WebKit/WebKitLibraries": true,
    "src/bun.js/WebKit/Websites": true,
    "src/bun.js/WebKit/resources": true,
    "src/bun.js/WebKit/LayoutTests": true,
    "src/bun.js/WebKit/ManualTests": true,
    "src/bun.js/WebKit/PerformanceTests": true,
    "src/bun.js/WebKit/WebKitLegacy": true,
    "src/bun.js/WebKit/WebCore": true,
    "src/bun.js/WebKit/WebDriver": true,
    "src/bun.js/WebKit/WebKitBuild": true,
    "src/bun.js/WebKit/WebInspectorUI": true
  },
  "[cpp]": {
    "editor.defaultFormatter": "xaver.clang-format"
  },
  "[h]": {
    "editor.defaultFormatter": "xaver.clang-format"
  },
  "[c]": {
    "editor.defaultFormatter": "xaver.clang-format"
  },
  "files.associations": {
    "*.lock": "yarnlock",
    "*.idl": "cpp",
    "memory": "cpp",
    "iostream": "cpp",
    "algorithm": "cpp",
    "random": "cpp",
    "ios": "cpp",
    "filesystem": "cpp",
    "__locale": "cpp",
    "type_traits": "cpp",
    "__mutex_base": "cpp",
    "__string": "cpp",
    "string": "cpp",
    "string_view": "cpp",
    "typeinfo": "cpp",
    "__config": "cpp",
    "__nullptr": "cpp",
    "exception": "cpp",
    "__bit_reference": "cpp",
    "atomic": "cpp",
    "utility": "cpp",
    "sstream": "cpp",
    "__functional_base": "cpp",
    "new": "cpp",
    "__debug": "cpp",
    "__errc": "cpp",
    "__hash_table": "cpp",
    "__node_handle": "cpp",
    "__split_buffer": "cpp",
    "__threading_support": "cpp",
    "__tuple": "cpp",
    "array": "cpp",
    "bit": "cpp",
    "bitset": "cpp",
    "cctype": "cpp",
    "chrono": "cpp",
    "clocale": "cpp",
    "cmath": "cpp",
    "complex": "cpp",
    "condition_variable": "cpp",
    "cstdarg": "cpp",
    "cstddef": "cpp",
    "cstdint": "cpp",
    "cstdio": "cpp",
    "cstdlib": "cpp",
    "cstring": "cpp",
    "ctime": "cpp",
    "cwchar": "cpp",
    "cwctype": "cpp",
    "deque": "cpp",
    "fstream": "cpp",
    "functional": "cpp",
    "initializer_list": "cpp",
    "iomanip": "cpp",
    "iosfwd": "cpp",
    "istream": "cpp",
    "iterator": "cpp",
    "limits": "cpp",
    "locale": "cpp",
    "mutex": "cpp",
    "optional": "cpp",
    "ostream": "cpp",
    "ratio": "cpp",
    "stack": "cpp",
    "stdexcept": "cpp",
    "streambuf": "cpp",
    "system_error": "cpp",
    "thread": "cpp",
    "tuple": "cpp",
    "unordered_map": "cpp",
    "unordered_set": "cpp",
    "vector": "cpp",
    "__bits": "cpp",
    "__tree": "cpp",
    "map": "cpp",
    "numeric": "cpp",
    "set": "cpp",
    "__memory": "cpp",
    "memory_resource": "cpp",
    "resource.h": "c",
    "sysinfo.h": "c",
    "*.tcc": "cpp",
    "list": "cpp",
    "shared_mutex": "cpp",
    "cinttypes": "cpp",
    "variant": "cpp",
    "sysctl.h": "c",
    "interface_adresses.h": "c",
    "interface_addresses.h": "c",
    "ctype.h": "c",
    "ethernet.h": "c",
    "inet.h": "c",
    "packet.h": "c",
    "queue": "cpp",
    "compare": "cpp",
    "concepts": "cpp",
    "typeindex": "cpp",
    "__verbose_abort": "cpp"
  },
  "cmake.configureOnOpen": false,
  "C_Cpp.errorSquiggles": "Enabled",
  "eslint.workingDirectories": ["packages/bun-types"]
}