質問編集履歴
1
設定ファイルの情報を追記
title
CHANGED
File without changes
|
body
CHANGED
@@ -75,4 +75,56 @@
|
|
75
75
|
|:--|:--|:--|
|
76
76
|
|OS|windows10 home|←|
|
77
77
|
|VS code|1.40.1|←|
|
78
|
-
|Python|3.7.5 64-bit|←|
|
78
|
+
|Python|3.7.5 64-bit|←|
|
79
|
+
|
80
|
+
|
81
|
+
settings.json(旧PC、新PC、ノートPC共通)
|
82
|
+
```
|
83
|
+
{
|
84
|
+
"python.linting.enabled": true,
|
85
|
+
"python.linting.pylintEnabled": false,
|
86
|
+
"python.linting.flake8Enabled": true,
|
87
|
+
"python.linting.flake8Args": [
|
88
|
+
"--max-line-length = 150"
|
89
|
+
],
|
90
|
+
"python.linting.mypyEnabled": true,
|
91
|
+
"python.linting.lintOnSave": true,
|
92
|
+
"python.formatting.provider": "black",
|
93
|
+
"python.autoComplete.addBrackets": true,
|
94
|
+
"autoDocstring.docstringFormat": "google",
|
95
|
+
"editor.formatOnSave": true,
|
96
|
+
"git.autofetch": true,
|
97
|
+
"[python]": {
|
98
|
+
"editor.tabSize": 4,
|
99
|
+
},
|
100
|
+
"[markdown]": {
|
101
|
+
"editor.wordWrap": "on",
|
102
|
+
"editor.quickSuggestions": false,
|
103
|
+
"editor.insertSpaces": true,
|
104
|
+
"editor.tabSize": 2
|
105
|
+
},
|
106
|
+
"editor.fontFamily": "Yutapon coding",
|
107
|
+
"workbench.iconTheme": "vscode-icons",
|
108
|
+
"editor.suggestSelection": "first",
|
109
|
+
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
|
110
|
+
"python.jediEnabled": false,
|
111
|
+
}
|
112
|
+
```
|
113
|
+
launch.json(旧PC、新PC、ノートPC共通)
|
114
|
+
```
|
115
|
+
{
|
116
|
+
// IntelliSense を使用して利用可能な属性を学べます。
|
117
|
+
// 既存の属性の説明をホバーして表示します。
|
118
|
+
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
|
119
|
+
"version": "0.2.0",
|
120
|
+
"configurations": [
|
121
|
+
{
|
122
|
+
"name": "Python: Current File",
|
123
|
+
"type": "python",
|
124
|
+
"request": "launch",
|
125
|
+
"program": "${file}",
|
126
|
+
"console": "integratedTerminal"
|
127
|
+
}
|
128
|
+
]
|
129
|
+
}
|
130
|
+
```
|