You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can group config files like a folder to declutter your vscode file explorer, here is my take for sveltekit.
VSCode File Nesting / File Grouping
If you go to your VSCode defaultSettings.json you'll see explorer.fileNesting.patterns key, turns out VSCode can group files based on some patterns.
Here is that section;
// Controls nesting of files in the Explorer. `explorer.fileNesting.enabled` must be set for this to take effect. Each __Item__ represents a parent pattern and may contain a single `*` character that matches any string. Each __Value__ represents a comma separated list of the child patterns that should be shown nested under a given parent. Child patterns may contain several special tokens:// - `${capture}`: Matches the resolved value of the `*` from the parent pattern// - `${basename}`: Matches the parent file's basename, the `file` in `file.ts`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters