VSCode
In VSCode, press ctrlshiftp, and write "open workspace settings"
We're going to hide the files we don't want to see, so they don't clutter our tree. Look for files.exclude, and add:
**/*node_modulesto hide that folder**/*.vscodeto hide the settings themselves**/*package-lock.json
Add them to search: Exclude too, so you they don't clutter your search results
While you're at it, set the tab size to 2 to enforce editor-level consistency when handling indents
If you use prettier or unibeautify, now would be a good time to add this configuration too, to enforce consistent styling.
Last updated
Was this helpful?