I'm trying to configure VS Code to exclude all files without an extension (eg Linux executables) from the file explorer.
I know about using files.exclude, but I can't find a pattern that correctly matches files without a dot (.) in their name.
What I tried:
**/[^.]*"and**/?*[^.]*excluded all files.**/!(*.*)didn't work.
files.excludeto your question with some of the patterns you've tried.