-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkiosque.code-workspace
67 lines (65 loc) · 1.98 KB
/
kiosque.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
57
58
59
60
61
62
63
64
65
66
67
{
"folders": [{ "path": "." }],
"settings": {
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.inlayHints.variableTypes": true,
"editor.formatOnSave": true,
"editor.rulers": [80],
"mypy-type-checker.importStrategy": "fromEnvironment",
"ruff.importStrategy": "fromEnvironment",
"[python]": {
"files.insertFinalNewline": true,
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.organizeImports.ruff": "explicit",
"source.fixAll.ruff": "never"
}
},
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#eedebf",
"activityBar.background": "#eedebf",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#2fb084",
"activityBarBadge.foreground": "#15202b",
"commandCenter.border": "#15202b99",
"sash.hoverBorder": "#eedebf",
"statusBar.background": "#e4c996",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#dab46d",
"statusBarItem.remoteBackground": "#e4c996",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#e4c996",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#e4c99699",
"titleBar.inactiveForeground": "#15202b99"
},
"peacock.color": "#e4c996"
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Pour la science",
"program": "kiosque",
"args": ["pls"],
"type": "python",
"request": "launch"
},
{
"name": "Le Monde diplomatique",
"program": "kiosque",
"args": ["lmd"],
"type": "python",
"request": "launch"
},
{
"name": "Courrier international",
"program": "kiosque",
"args": ["courrier"],
"type": "python",
"request": "launch"
}
]
}
}