2025-05-01 07:36:14 +00:00
|
|
|
This is a fork of the VSCode repo called Void.
|
|
|
|
|
|
|
|
|
|
Most code we care about lives in src/vs/workbench/contrib/void.
|
|
|
|
|
|
2025-05-01 11:04:10 +00:00
|
|
|
You may often need to explore the full repo to find relevant parts of code.
|
2025-05-05 08:50:14 +00:00
|
|
|
Look for services and built-in functions that you might need to use to solve the problem.
|
2025-05-05 07:50:33 +00:00
|
|
|
|
2025-05-09 08:39:15 +00:00
|
|
|
In typescript, do NOT cast to types if not neccessary. NEVER lazily cast to 'any'. Find the correct type to apply and use it.
|
|
|
|
|
|
|
|
|
|
Do not add or remove semicolons to any of my files. Just go with convention and make the least number of changes.
|