質問編集履歴

1

記載ミス

2020/11/03 05:52

投稿

aiai8976
aiai8976

スコア112

test CHANGED
File without changes
test CHANGED
@@ -13,3 +13,51 @@
13
13
 
14
14
 
15
15
  prettierの自動整形が反映されない
16
+
17
+
18
+
19
+ ```
20
+
21
+ {
22
+
23
+ "window.zoomLevel": -1,
24
+
25
+ "javascript.format.insertSpaceBeforeFunctionParenthesis": true,
26
+
27
+ "typescript.format.insertSpaceBeforeFunctionParenthesis": true,
28
+
29
+ "editor.tabSize": 2,
30
+
31
+ "eslint.enable": true,
32
+
33
+ "files.associations": {
34
+
35
+ "*.vue": "vue"
36
+
37
+ },
38
+
39
+ "eslint.validate": ["javascript", "javascriptreact", "vue"],
40
+
41
+ "editor.codeActionsOnSave": {
42
+
43
+ "source.fixAll.eslint": true
44
+
45
+ },
46
+
47
+ "editor.suggestSelection": "first",
48
+
49
+ "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
50
+
51
+ "javascript.updateImportsOnFileMove.enabled": "always",
52
+
53
+ "python.languageServer": "Microsoft",
54
+
55
+ "editor.formatOnType": true,
56
+
57
+ "editor.formatOnSave": true
58
+
59
+ }
60
+
61
+
62
+
63
+ ```