File extensions settings precedence
See original GitHub issueIn my settings:
"code-runner.executorMapByFileExtension": {
"*.js": "node",
".es": "npm run babel-node",
".ts": "npm run ts-node"
},
// Set the executor of each language.
"code-runner.executorMap": {
"sup": "npm run sup",
"sup-babel": "npm run sup-babel",
"javascript": "node",
"php": "php",
"python": "python",
"perl": "perl",
"ruby": "ruby",
"go": "go run",
"lua": "lua",
"groovy": "groovy",
"powershell": "powershell -ExecutionPolicy ByPass -File",
"bat": "",
"shellscript": "bash",
"fsharp": "fsi",
"csharp": "scriptcs",
"vbscript": "cscript //Nologo"
},
When I run a .es file, it runs node instead of npm run babel-node. Note: no difference if setting “*.es” or “.es”
Issue Analytics
- State:
- Created 7 years ago
- Comments:16 (9 by maintainers)
Top Results From Across the Web
Configuration file precedence (GNU Astronomy Utilities)
4.2.2 Configuration file precedence ... The option values in all the programs of Gnuastro will be filled in the following order. If an...
Read more >User and Workspace Settings - Visual Studio Code
In general, VS Code extensions store their settings in your user or workspaces settings files and they are available through the Settings editor...
Read more >Configuration file precedence - Splunk Documentation
Configuration file precedence · It merges the settings from all copies of the file, using a location-based prioritization scheme. · When different copies...
Read more >Order of Precedence when Configuring ASP.NET Core
Lets take a look at details for each of the configuration sources. 1. appsettings.json File. The default location for your configuration ...
Read more >Configuration File - Prettier
This means you can configure Prettier via (in order of precedence): ... different configuration for certain file extensions, folders and specific files.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Submit an issue to VS Code
Oh! Not sure whether it is VS Code bug to read config. It falls back to read
javascript
entry in default config. For quick turnaround, you coulde add"javascript": null
incode-runner.executorMap
instead of removing it.