We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f62723 commit 4dd5eb0Copy full SHA for 4dd5eb0
src/analysis/utils/tool-utils.ts
@@ -182,8 +182,8 @@ export const getPatternFromRuntimeTool = (toolLabel: RuntimeToolLabel): string =
182
const patterns: Record<RuntimeToolLabel, string> = {
183
// Adding suffixes to conda, pip, and poetry environments (only conda supports R)
184
[runtimeToolLabels.RStudio]: '.+(\\.R|\\.Rmd|\\.yml)$',
185
- [runtimeToolLabels.Jupyter]: '.+(\\.ipynb|\\.yml|\\.txt|\\.lock|\\.toml)',
186
- [runtimeToolLabels.JupyterLab]: '.+(\\.ipynb|\\.yml|\\.txt|\\.lock|\\.toml)',
+ [runtimeToolLabels.Jupyter]: '.+(\\.ipynb|\\.yml|\\.txt|\\.lock|\\.toml)$',
+ [runtimeToolLabels.JupyterLab]: '.+(\\.ipynb|\\.yml|\\.txt|\\.lock|\\.toml)$',
187
};
188
return patterns[toolLabel];
189
0 commit comments