質問編集履歴

1

設定ファイルの情報を追記

2019/11/25 13:13

投稿

ykhsgw
ykhsgw

スコア4

test CHANGED
File without changes
test CHANGED
@@ -153,3 +153,107 @@
153
153
  |VS code|1.40.1|←|
154
154
 
155
155
  |Python|3.7.5 64-bit|←|
156
+
157
+
158
+
159
+
160
+
161
+ settings.json(旧PC、新PC、ノートPC共通)
162
+
163
+ ```
164
+
165
+ {
166
+
167
+ "python.linting.enabled": true,
168
+
169
+ "python.linting.pylintEnabled": false,
170
+
171
+ "python.linting.flake8Enabled": true,
172
+
173
+ "python.linting.flake8Args": [
174
+
175
+ "--max-line-length = 150"
176
+
177
+ ],
178
+
179
+ "python.linting.mypyEnabled": true,
180
+
181
+ "python.linting.lintOnSave": true,
182
+
183
+ "python.formatting.provider": "black",
184
+
185
+ "python.autoComplete.addBrackets": true,
186
+
187
+ "autoDocstring.docstringFormat": "google",
188
+
189
+ "editor.formatOnSave": true,
190
+
191
+ "git.autofetch": true,
192
+
193
+ "[python]": {
194
+
195
+ "editor.tabSize": 4,
196
+
197
+ },
198
+
199
+ "[markdown]": {
200
+
201
+ "editor.wordWrap": "on",
202
+
203
+ "editor.quickSuggestions": false,
204
+
205
+ "editor.insertSpaces": true,
206
+
207
+ "editor.tabSize": 2
208
+
209
+ },
210
+
211
+ "editor.fontFamily": "Yutapon coding",
212
+
213
+ "workbench.iconTheme": "vscode-icons",
214
+
215
+ "editor.suggestSelection": "first",
216
+
217
+ "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
218
+
219
+ "python.jediEnabled": false,
220
+
221
+ }
222
+
223
+ ```
224
+
225
+ launch.json(旧PC、新PC、ノートPC共通)
226
+
227
+ ```
228
+
229
+ {
230
+
231
+ // IntelliSense を使用して利用可能な属性を学べます。
232
+
233
+ // 既存の属性の説明をホバーして表示します。
234
+
235
+ // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
236
+
237
+ "version": "0.2.0",
238
+
239
+ "configurations": [
240
+
241
+ {
242
+
243
+ "name": "Python: Current File",
244
+
245
+ "type": "python",
246
+
247
+ "request": "launch",
248
+
249
+ "program": "${file}",
250
+
251
+ "console": "integratedTerminal"
252
+
253
+ }
254
+
255
+ ]
256
+
257
+ }
258
+
259
+ ```