I am trying to get my vscode workspace to expect all files without an extension to be js files.
I wrote this regex to select files without a .
, but I can't get it to work. You can use regex here, right? I couldn't find this in the docs, so I am guessing.
{
"files.associations": {
"^([^.]+)$": "javascript"
}
}