質問編集履歴
1
該当のソースコードにすべてのコードを載せましたので引き続きアドバイスお願いします
test
CHANGED
File without changes
|
test
CHANGED
@@ -12,7 +12,52 @@
|
|
12
12
|
### 該当のソースコード
|
13
13
|
|
14
14
|
```
|
15
|
+
{
|
16
|
+
"workbench.colorTheme": "Default Dark+",
|
17
|
+
"python.pythonPath": "C:\\Users\\yutas18132\\anaconda3\\python.exe",
|
18
|
+
"python.defaultInterpreterPath":
|
19
|
+
"C:\\Users\\yutas18132\\anaconda3\\python.exe",
|
20
|
+
"editor.suggestSelection": "first",
|
21
|
+
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue"
|
22
|
+
}
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
{
|
29
|
+
"workbench.colorTheme": "Monokai Pro",
|
30
|
+
"workbench.colorCustomizations": {
|
31
|
+
"sideBar.background": "#141414",
|
32
|
+
"activityBar.background": "#141414",
|
33
|
+
"editor.background": "#181818",
|
34
|
+
"panel.background": "#181818",
|
35
|
+
"terminal.background": "#181818",
|
36
|
+
"editorGroupHeader.tabsBackground": "#181818",
|
37
|
+
"tab.inactiveBackground": "#181818",
|
38
|
+
"editorGutter.background": "#181818"
|
15
|
-
|
39
|
+
},
|
40
|
+
|
41
|
+
|
42
|
+
"bracket-pair-colorizer-2.colorMode": "Independent",
|
43
|
+
"bracket-pair-colorizer-2.colors": ["White", "Gold", "Orchid"],
|
44
|
+
|
45
|
+
"python.linting.enabled": true,
|
46
|
+
"python.linting.pylintEnabled": false,
|
47
|
+
"python.linting.flake8Enabled": true,
|
48
|
+
"python.linting.lintOnSave": true,
|
49
|
+
"python.linting.flake8Args": [
|
50
|
+
"--max-line-length=100"
|
51
|
+
],
|
52
|
+
|
53
|
+
|
54
|
+
"editor.formatOnSave": true,
|
55
|
+
"editor.formatOnType": true,
|
56
|
+
"python.formatting.provider": "autopep8",
|
57
|
+
"python.formatting.autopep8Args": [
|
58
|
+
"--max-line-length=100"
|
59
|
+
]
|
60
|
+
}
|
16
61
|
```
|
17
62
|
|
18
63
|
### 試したこと・調べたこと
|