mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 09:02:15 -06:00
vscode rice
This commit is contained in:
parent
69e83e95ba
commit
500daacca2
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -13,9 +13,6 @@ dist/
|
||||||
# sublime
|
# sublime
|
||||||
*.sublime-workspace
|
*.sublime-workspace
|
||||||
|
|
||||||
# vscode
|
|
||||||
.vscode
|
|
||||||
|
|
||||||
# winmerge
|
# winmerge
|
||||||
*.bak
|
*.bak
|
||||||
|
|
||||||
|
|
32
.vscode/launch.json
vendored
Normal file
32
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
{
|
||||||
|
"version": "0.2.0",
|
||||||
|
"configurations": [
|
||||||
|
{
|
||||||
|
"name": "Run copyparty",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"module": "copyparty",
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"args": [
|
||||||
|
"-j",
|
||||||
|
"2",
|
||||||
|
"-nc",
|
||||||
|
"4",
|
||||||
|
"-nw",
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Run active unit test",
|
||||||
|
"type": "python",
|
||||||
|
"request": "launch",
|
||||||
|
"module": "unittest",
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
"cwd": "${workspaceFolder}",
|
||||||
|
"args": [
|
||||||
|
"-v",
|
||||||
|
"${file}"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
]
|
||||||
|
}
|
36
.vscode/settings.json
vendored
Normal file
36
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"workbench.colorCustomizations": {
|
||||||
|
"terminal.background": "#1e1e1e",
|
||||||
|
"terminal.foreground": "#d2d2d2",
|
||||||
|
"terminalCursor.background": "#93A1A1",
|
||||||
|
"terminalCursor.foreground": "#93A1A1",
|
||||||
|
"terminal.ansiBlack": "#404040",
|
||||||
|
"terminal.ansiRed": "#f03669",
|
||||||
|
"terminal.ansiGreen": "#b8e346",
|
||||||
|
"terminal.ansiYellow": "#ffa402",
|
||||||
|
"terminal.ansiBlue": "#02a2ff",
|
||||||
|
"terminal.ansiMagenta": "#f65be3",
|
||||||
|
"terminal.ansiCyan": "#3da698",
|
||||||
|
"terminal.ansiWhite": "#d2d2d2",
|
||||||
|
"terminal.ansiBrightBlack": "#606060",
|
||||||
|
"terminal.ansiBrightRed": "#c75b79",
|
||||||
|
"terminal.ansiBrightGreen": "#c8e37e",
|
||||||
|
"terminal.ansiBrightYellow": "#ffbe4a",
|
||||||
|
"terminal.ansiBrightBlue": "#71cbff",
|
||||||
|
"terminal.ansiBrightMagenta": "#b67fe3",
|
||||||
|
"terminal.ansiBrightCyan": "#9cf0ed",
|
||||||
|
"terminal.ansiBrightWhite": "#ffffff",
|
||||||
|
},
|
||||||
|
"python.testing.pyTestEnabled": false,
|
||||||
|
"python.testing.nosetestsEnabled": false,
|
||||||
|
"python.testing.unittestEnabled": true,
|
||||||
|
"python.testing.unittestArgs": [
|
||||||
|
"-v",
|
||||||
|
"-s",
|
||||||
|
"./tests",
|
||||||
|
"-p",
|
||||||
|
"test_*.py"
|
||||||
|
],
|
||||||
|
"python.linting.pylintEnabled": true,
|
||||||
|
"python.linting.enabled": true,
|
||||||
|
}
|
Loading…
Reference in a new issue