-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathkiosque.code-workspace
More file actions
76 lines (76 loc) · 2.01 KB
/
kiosque.code-workspace
File metadata and controls
76 lines (76 loc) · 2.01 KB
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
68
69
70
71
72
73
74
75
76
{
"folders": [
{
"path": "."
}
],
"settings": {
"python.analysis.inlayHints.pytestParameters": true,
"python.analysis.inlayHints.variableTypes": true,
"editor.formatOnSave": true,
"editor.rulers": [
80
],
"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": "debugpy",
"request": "launch"
},
{
"name": "Le Monde diplomatique",
"program": "kiosque",
"args": [
"lmd"
],
"type": "debugpy",
"request": "launch"
},
{
"name": "Courrier international",
"program": "kiosque",
"args": [
"courrier"
],
"type": "debugpy",
"request": "launch"
}
]
}
}