Skip to content

Commit 4e41477

Browse files
committed
install missing tools
1 parent d55ad89 commit 4e41477

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

src/client/common/installer.ts

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
export enum product {
3+
pytest,
4+
nosetest,
5+
pylint,
6+
flake8,
7+
pep8,
8+
prospector,
9+
pydocstyle,
10+
yapf,
11+
autopep8
12+
}
13+
14+
interface installIScript {
15+
windows: string;
16+
mac: string;
17+
linux: string;
18+
}
19+
20+
const productInstallScripts = new Map<product, installIScript>();
21+
22+
export function promptToInstall(prod:product){
23+
24+
}

0 commit comments

Comments
 (0)