回答編集履歴

1

コードを修正

2021/10/01 10:18

投稿

itagagaki
itagagaki

スコア8402

test CHANGED
@@ -16,59 +16,53 @@
16
16
 
17
17
  [{
18
18
 
19
- "vscode-w3cvalidation.validator-token": "Thu, 01 Jan 1970 00:00:00 GMT",
19
+ "vscode-w3cvalidation.validator-token": "Thu, 01 Jan 1970 00:00:00 GMT",
20
20
 
21
- "liveSassCompile.settings.autoprefix":[]
21
+ "liveSassCompile.settings.autoprefix": []
22
22
 
23
23
  }, {
24
24
 
25
- "liveSassCompile.settings.formats": [ //Sassの出力内容の設定
25
+ "liveSassCompile.settings.formats": [{
26
26
 
27
- {
27
+ "format": "expanded",
28
28
 
29
- "format": "expanded", //nested、compact、compressedのどれかを選ぶ
29
+ "extensionName": ".css",
30
30
 
31
- "extensionName": ".css", //style.cssとして出力
31
+ "savePath": "/css"
32
32
 
33
- "savePath": "/css" //cssフォルダの中にstyle.cssを出力
33
+ }],
34
34
 
35
- }
36
-
37
- ],
38
-
39
- "liveSassCompile.settings.excludeList": [
35
+ "liveSassCompile.settings.excludeList": [
40
36
 
41
37
 
42
38
 
43
- //対象外とするフォルダを指定
39
+ "**/node_modules/**",
44
40
 
45
- "**/node_modules/**",
41
+ ".vscode/**",
46
42
 
47
- ".vscode/**",
43
+ ".history/**"
48
44
 
49
- ".history/**"
45
+ ],
50
46
 
51
- ],
47
+ "liveSassCompile.settings.autoprefix": [
52
48
 
53
- "liveSassCompile.settings.autoprefix": [ //ベンダープレフィックスの指定
49
+ "last 2 versions",
54
50
 
55
- "last 2 versions",
51
+ "ie >= 11",
56
52
 
57
- "ie >= 11",
53
+ "Android >= 4",
58
54
 
59
- "Android >= 4",
55
+ "ios_saf >= 8"
60
56
 
61
- "ios_saf >= 8"
62
-
63
- ],
57
+ ],
64
58
 
65
59
 
66
60
 
67
- "editor.tabSize": 1,
61
+ "editor.tabSize": 1,
68
62
 
69
- "editor.detectIndentation": false,
63
+ "editor.detectIndentation": false,
70
64
 
71
- "liveServer.settings.ChromeDebuggingAttachment": false
65
+ "liveServer.settings.ChromeDebuggingAttachment": false
72
66
 
73
67
  }]
74
68