質問編集履歴
1
記載ミス
title
CHANGED
File without changes
|
body
CHANGED
@@ -5,4 +5,28 @@
|
|
5
5
|
わかる方がいましたら、コメントお願いします。
|
6
6
|
### 発生している問題・エラーメッセージ
|
7
7
|
|
8
|
-
prettierの自動整形が反映されない
|
8
|
+
prettierの自動整形が反映されない
|
9
|
+
|
10
|
+
```
|
11
|
+
{
|
12
|
+
"window.zoomLevel": -1,
|
13
|
+
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
|
14
|
+
"typescript.format.insertSpaceBeforeFunctionParenthesis": true,
|
15
|
+
"editor.tabSize": 2,
|
16
|
+
"eslint.enable": true,
|
17
|
+
"files.associations": {
|
18
|
+
"*.vue": "vue"
|
19
|
+
},
|
20
|
+
"eslint.validate": ["javascript", "javascriptreact", "vue"],
|
21
|
+
"editor.codeActionsOnSave": {
|
22
|
+
"source.fixAll.eslint": true
|
23
|
+
},
|
24
|
+
"editor.suggestSelection": "first",
|
25
|
+
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
|
26
|
+
"javascript.updateImportsOnFileMove.enabled": "always",
|
27
|
+
"python.languageServer": "Microsoft",
|
28
|
+
"editor.formatOnType": true,
|
29
|
+
"editor.formatOnSave": true
|
30
|
+
}
|
31
|
+
|
32
|
+
```
|