I know how to ignore most of files in VScode as follows
"files.exclude": {
"**/*.pdf": true,
"**/*.mp3": true,
"**/*.out": true,
"**/*.exe": true,
"**/Music": true
},
But I also want to ignore no suffix files, for example the filename is smartPoint
(which is generated after I run file smartPoint.cpp
in VScode). Is there any way I can ignore this kind of Unix file in Mac?
Picture describe