-
Notifications
You must be signed in to change notification settings - Fork 2
/
Twitch_Bot.code-workspace
56 lines (56 loc) · 1.08 KB
/
Twitch_Bot.code-workspace
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"folders": [
{
"path": "bot"
},
{
"path": "web"
},
{
"path": "traefik"
},
{
"path": "tools"
},
{
"path": "fail2ban"
},
{
"path": "mysql"
},
{
"path": "mosquitto"
},
{
"path": "."
}
],
"settings": {
"platformSettings.autoLoad": true,
"platformSettings.platforms": {
"win32": {
"nodes": {
"python.pythonPath": "${workspaceFolder}\\.venv\\Scripts\\python.exe",
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.formatting.blackPath": "${env:USERPROFILE}\\.local\\bin\\black.exe",
"editor.formatOnPaste": false,
"files.eol": "\n",
}
},
"linux": {
"nodes": {
"python.pythonPath": "/usr/local/bin/python",
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.formatting.blackPath": "/usr/local/bin/black",
"editor.formatOnPaste": false,
"files.eol": "\n",
}
}
},
"python.pythonPath": "/usr/local/bin/python",
}
}