I want to associate all files without extension to xml format in VSCode.
When I do below, it makes all files (even with extensions) as xml. \"files.associations\": {
If I understand correctly, then you can add the following in the settings:
"files.associations": { "[!.]*": "xml", },