回答編集履歴

1

追記

2022/07/14 06:52

投稿

Matsumon0104
Matsumon0104

スコア1005

test CHANGED
@@ -25,3 +25,51 @@
25
25
  }
26
26
  ]
27
27
  ```
28
+
29
+ ---
30
+
31
+ 追記
32
+
33
+ まず、VSCodeの「setting.json」を開きます。
34
+
35
+ [settings.json を素早く開く](https://maku.blog/p/tfq2cnw/#settingsjson-%E3%82%92%E7%B4%A0%E6%97%A9%E3%81%8F%E9%96%8B%E3%81%8F)
36
+
37
+ 表示された「setting.json」に追記します。
38
+
39
+
40
+ ```json
41
+ {
42
+ // Controls whether the editor shows CodeLens.
43
+ "diffEditor.codeLens": false,
44
+
45
+ // When enabled, the diff editor ignores changes in leading or trailing whitespace.
46
+ "diffEditor.ignoreTrimWhitespace": true,
47
+ }
48
+
49
+
50
+
51
+ {
52
+ // Controls whether the editor shows CodeLens.
53
+ "diffEditor.codeLens": false,
54
+
55
+ // When enabled, the diff editor ignores changes in leading or trailing whitespace.
56
+ "diffEditor.ignoreTrimWhitespace": true,
57
+
58
+ "liveSassCompile.settings.formats":[
59
+ // This is Default.
60
+ {
61
+ "format": "expanded",
62
+ "extensionName": ".css",
63
+ "savePath": "/dist/css"
64
+ },
65
+ // You can add more
66
+ {
67
+ "format": "compressed",
68
+ "extensionName": ".min.css",
69
+ "savePath": "/dist/css/compless"
70
+ },
71
+ ]
72
+ }
73
+
74
+ ```
75
+ 「savePath」はプロジェクトからの相対パスもしくは絶対パスを指定します。