回答編集履歴

1

修正

2021/10/01 10:13

投稿

mike2mike4
mike2mike4

スコア935

test CHANGED
@@ -1,3 +1,67 @@
1
- }の末尾に
1
+ ~~}の末尾に
2
2
 
3
- ,(カンマ)を入れてください
3
+ ,(カンマ)を入れてください~~
4
+
5
+
6
+
7
+ 以下の様になれば良いのですが、環境依存なのでテストできませんでした。
8
+
9
+ ```JSON
10
+
11
+ {
12
+
13
+ "vscode-w3cvalidation.validator-token": "Thu, 01 Jan 1970 00:00:00 GMT",
14
+
15
+ "liveSassCompile.settings.autoprefix":[],
16
+
17
+ "liveSassCompile.settings.formats": [ //Sassの出力内容の設定
18
+
19
+ {
20
+
21
+ "format": "expanded", //nested、compact、compressedのどれかを選ぶ
22
+
23
+ "extensionName": ".css", //style.cssとして出力
24
+
25
+ "savePath": "/css" //cssフォルダの中にstyle.cssを出力
26
+
27
+ }
28
+
29
+ ],
30
+
31
+ "liveSassCompile.settings.excludeList": [
32
+
33
+
34
+
35
+ //対象外とするフォルダを指定
36
+
37
+ "**/node_modules/**",
38
+
39
+ ".vscode/**",
40
+
41
+ ".history/**"
42
+
43
+ ],
44
+
45
+ "liveSassCompile.settings.autoprefix": [ //ベンダープレフィックスの指定
46
+
47
+ "last 2 versions",
48
+
49
+ "ie >= 11",
50
+
51
+ "Android >= 4",
52
+
53
+ "ios_saf >= 8"
54
+
55
+ ],
56
+
57
+
58
+
59
+ "editor.tabSize": 1,
60
+
61
+ "editor.detectIndentation": false,
62
+
63
+ "liveServer.settings.ChromeDebuggingAttachment": false
64
+
65
+ }
66
+
67
+ ```