質問編集履歴
1
環境を追記しました
title
CHANGED
File without changes
|
body
CHANGED
@@ -6,4 +6,39 @@
|
|
6
6
|
設定などを確認しましたが、以前と同じでどうしたらいいのかわかりません。
|
7
7
|
なにかしらの設定ファイルに問題があるのでしょうか?
|
8
8
|
|
9
|
-
よろしくお願いいたします。
|
9
|
+
よろしくお願いいたします。
|
10
|
+
|
11
|
+
## 追記
|
12
|
+
|
13
|
+
・環境
|
14
|
+
MacOS Mojave
|
15
|
+
VSCode 1.33
|
16
|
+
|
17
|
+
setting.json
|
18
|
+
|
19
|
+
```JSON
|
20
|
+
{
|
21
|
+
"liveServer.settings.donotVerifyTags": true,
|
22
|
+
"liveServer.settings.donotShowInfoMsg": true,
|
23
|
+
"html.autoClosingTags": false,
|
24
|
+
"html.format.contentUnformatted": "pre, code, textarea, title, h1, h2, h3, h4, h5, h6, p", // タグ内の記述はフォーマットしない
|
25
|
+
"html.format.extraLiners": "", // head, body, /html タグの前に改行を入れない
|
26
|
+
"html.format.unformatted": null, // フレージング・コンテンツ(旧インライン要素のようなタグ)はフォーマットしない
|
27
|
+
"editor.formatOnType": true,
|
28
|
+
"editor.formatOnSave": true,
|
29
|
+
"editor.defaultFormatter": "vscode.configuration-editing",
|
30
|
+
"editor.formatOnPaste": true,
|
31
|
+
"[html]": {
|
32
|
+
},
|
33
|
+
"files.exclude": {
|
34
|
+
"**/._**": true
|
35
|
+
},
|
36
|
+
"window.zoomLevel": 1
|
37
|
+
}
|
38
|
+
```
|
39
|
+
|
40
|
+
### Extension
|
41
|
+
- Japanese Language Pack for Visual Studio Code
|
42
|
+
- Live Server
|
43
|
+
- Prettier - Code formatter
|
44
|
+
- Vue 2 Snippets
|