teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

修正

2021/10/01 10:13

投稿

退会済みユーザー
answer CHANGED
@@ -1,2 +1,34 @@
1
- }の末尾に
1
+ ~~}の末尾に
2
- ,(カンマ)を入れてください
2
+ ,(カンマ)を入れてください~~
3
+
4
+ 以下の様になれば良いのですが、環境依存なのでテストできませんでした。
5
+ ```JSON
6
+ {
7
+ "vscode-w3cvalidation.validator-token": "Thu, 01 Jan 1970 00:00:00 GMT",
8
+ "liveSassCompile.settings.autoprefix":[],
9
+ "liveSassCompile.settings.formats": [ //Sassの出力内容の設定
10
+ {
11
+ "format": "expanded", //nested、compact、compressedのどれかを選ぶ
12
+ "extensionName": ".css", //style.cssとして出力
13
+ "savePath": "/css" //cssフォルダの中にstyle.cssを出力
14
+ }
15
+ ],
16
+ "liveSassCompile.settings.excludeList": [
17
+
18
+ //対象外とするフォルダを指定
19
+ "**/node_modules/**",
20
+ ".vscode/**",
21
+ ".history/**"
22
+ ],
23
+ "liveSassCompile.settings.autoprefix": [ //ベンダープレフィックスの指定
24
+ "last 2 versions",
25
+ "ie >= 11",
26
+ "Android >= 4",
27
+ "ios_saf >= 8"
28
+ ],
29
+
30
+ "editor.tabSize": 1,
31
+ "editor.detectIndentation": false,
32
+ "liveServer.settings.ChromeDebuggingAttachment": false
33
+ }
34
+ ```