質問編集履歴
3
内容の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -472,4 +472,10 @@
|
|
472
472
|
|
473
473
|
[DartJS Sass Compiler and Sass Watcher](https://marketplace.visualstudio.com/items?itemName=codelios.dartsass)
|
474
474
|
|
475
|
+
|
476
|
+
|
477
|
+
scssのコンパイルは拡張機能で行っています。
|
478
|
+
|
479
|
+
|
480
|
+
|
475
481
|
**以前から閉じタグの数が合わないと同じ内容のエラーが出ていました。**
|
2
ファイル内容の修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -30,6 +30,20 @@
|
|
30
30
|
|
31
31
|
```
|
32
32
|
|
33
|
+
setting.jsonの設定
|
34
|
+
|
35
|
+
"csscomb.preset": "~/.vscode/csscomb.json",
|
36
|
+
|
37
|
+
"csscomb.formatOnSave": true,
|
38
|
+
|
39
|
+
"csscomb.syntaxAssociations": {
|
40
|
+
|
41
|
+
"postcss": "scss"
|
42
|
+
|
43
|
+
},
|
44
|
+
|
45
|
+
|
46
|
+
|
33
47
|
csscomb.jsonの設定
|
34
48
|
|
35
49
|
{
|
1
ファイルの内容を記述
test
CHANGED
File without changes
|
test
CHANGED
@@ -26,6 +26,376 @@
|
|
26
26
|
|
27
27
|
|
28
28
|
|
29
|
+
### CSScombの設定
|
30
|
+
|
31
|
+
```
|
32
|
+
|
33
|
+
csscomb.jsonの設定
|
34
|
+
|
35
|
+
{
|
36
|
+
|
37
|
+
"always-semicolon": true,
|
38
|
+
|
39
|
+
"block-indent": " ",
|
40
|
+
|
41
|
+
"color-case": "lower",
|
42
|
+
|
43
|
+
"color-shorthand": true,
|
44
|
+
|
45
|
+
"element-case": "lower",
|
46
|
+
|
47
|
+
"leading-zero": false,
|
48
|
+
|
49
|
+
"quotes": "double",
|
50
|
+
|
51
|
+
"space-before-colon": "",
|
52
|
+
|
53
|
+
"space-after-colon": " ",
|
54
|
+
|
55
|
+
"space-before-combinator": " ",
|
56
|
+
|
57
|
+
"space-after-combinator": " ",
|
58
|
+
|
59
|
+
"space-between-declarations": "\n",
|
60
|
+
|
61
|
+
"space-before-opening-brace": " ",
|
62
|
+
|
63
|
+
"space-after-opening-brace": "\n",
|
64
|
+
|
65
|
+
"space-after-selector-delimiter": " ",
|
66
|
+
|
67
|
+
"space-before-selector-delimiter": " ",
|
68
|
+
|
69
|
+
"space-before-closing-brace": "\n",
|
70
|
+
|
71
|
+
"tab-size": true,
|
72
|
+
|
73
|
+
"unitless-zero": true,
|
74
|
+
|
75
|
+
"vendor-prefix-align": true,
|
76
|
+
|
77
|
+
"sort-order": [
|
78
|
+
|
79
|
+
[
|
80
|
+
|
81
|
+
"$variable",
|
82
|
+
|
83
|
+
"$import",
|
84
|
+
|
85
|
+
"$extend",
|
86
|
+
|
87
|
+
"display",
|
88
|
+
|
89
|
+
"flex",
|
90
|
+
|
91
|
+
"flex-grow",
|
92
|
+
|
93
|
+
"flex-shrink",
|
94
|
+
|
95
|
+
"flex-basis",
|
96
|
+
|
97
|
+
"flex-flow",
|
98
|
+
|
99
|
+
"flex-direction",
|
100
|
+
|
101
|
+
"flex-wrap",
|
102
|
+
|
103
|
+
"justify-content",
|
104
|
+
|
105
|
+
"align-content",
|
106
|
+
|
107
|
+
"align-items",
|
108
|
+
|
109
|
+
"align-self",
|
110
|
+
|
111
|
+
"order",
|
112
|
+
|
113
|
+
"visibility",
|
114
|
+
|
115
|
+
"opacity",
|
116
|
+
|
117
|
+
"clip ",
|
118
|
+
|
119
|
+
"clip-path",
|
120
|
+
|
121
|
+
"list-style",
|
122
|
+
|
123
|
+
"list-style-type",
|
124
|
+
|
125
|
+
"list-style-position",
|
126
|
+
|
127
|
+
"list-style-image",
|
128
|
+
|
129
|
+
"position",
|
130
|
+
|
131
|
+
"top",
|
132
|
+
|
133
|
+
"right",
|
134
|
+
|
135
|
+
"bottom",
|
136
|
+
|
137
|
+
"left",
|
138
|
+
|
139
|
+
"z-index",
|
140
|
+
|
141
|
+
"float",
|
142
|
+
|
143
|
+
"clear",
|
144
|
+
|
145
|
+
"transform",
|
146
|
+
|
147
|
+
"width",
|
148
|
+
|
149
|
+
"min-width",
|
150
|
+
|
151
|
+
"max-width",
|
152
|
+
|
153
|
+
"height",
|
154
|
+
|
155
|
+
"min-height",
|
156
|
+
|
157
|
+
"max-height",
|
158
|
+
|
159
|
+
"margin",
|
160
|
+
|
161
|
+
"margin-top",
|
162
|
+
|
163
|
+
"margin-right",
|
164
|
+
|
165
|
+
"margin-bottom",
|
166
|
+
|
167
|
+
"margin-left",
|
168
|
+
|
169
|
+
"padding",
|
170
|
+
|
171
|
+
"padding-top",
|
172
|
+
|
173
|
+
"padding-right",
|
174
|
+
|
175
|
+
"padding-bottom",
|
176
|
+
|
177
|
+
"padding-left",
|
178
|
+
|
179
|
+
"overflow",
|
180
|
+
|
181
|
+
"overflow-x",
|
182
|
+
|
183
|
+
"overflow-y",
|
184
|
+
|
185
|
+
"border",
|
186
|
+
|
187
|
+
"border-top",
|
188
|
+
|
189
|
+
"border-right",
|
190
|
+
|
191
|
+
"border-bottom",
|
192
|
+
|
193
|
+
"border-left",
|
194
|
+
|
195
|
+
"border-width",
|
196
|
+
|
197
|
+
"border-top-width",
|
198
|
+
|
199
|
+
"border-right-width",
|
200
|
+
|
201
|
+
"border-bottom-width",
|
202
|
+
|
203
|
+
"border-left-width",
|
204
|
+
|
205
|
+
"border-style",
|
206
|
+
|
207
|
+
"border-top-style",
|
208
|
+
|
209
|
+
"border-right-style",
|
210
|
+
|
211
|
+
"border-bottom-style",
|
212
|
+
|
213
|
+
"border-left-style",
|
214
|
+
|
215
|
+
"border-color",
|
216
|
+
|
217
|
+
"border-top-color",
|
218
|
+
|
219
|
+
"border-right-color",
|
220
|
+
|
221
|
+
"border-bottom-color",
|
222
|
+
|
223
|
+
"border-left-color",
|
224
|
+
|
225
|
+
"border-image",
|
226
|
+
|
227
|
+
"border-image-source",
|
228
|
+
|
229
|
+
"border-image-slice",
|
230
|
+
|
231
|
+
"border-image-width",
|
232
|
+
|
233
|
+
"border-image-outset",
|
234
|
+
|
235
|
+
"border-image-repeat",
|
236
|
+
|
237
|
+
"border-radius",
|
238
|
+
|
239
|
+
"border-top-left-radius",
|
240
|
+
|
241
|
+
"border-top-right-radius",
|
242
|
+
|
243
|
+
"border-bottom-right-radius",
|
244
|
+
|
245
|
+
"border-bottom-left-radius",
|
246
|
+
|
247
|
+
"box-sizing",
|
248
|
+
|
249
|
+
"box-shadow",
|
250
|
+
|
251
|
+
"background",
|
252
|
+
|
253
|
+
"background-image",
|
254
|
+
|
255
|
+
"background-position",
|
256
|
+
|
257
|
+
"background-size",
|
258
|
+
|
259
|
+
"background-repeat",
|
260
|
+
|
261
|
+
"background-origin",
|
262
|
+
|
263
|
+
"background-clip",
|
264
|
+
|
265
|
+
"background-attachment",
|
266
|
+
|
267
|
+
"background-color",
|
268
|
+
|
269
|
+
"color",
|
270
|
+
|
271
|
+
"font",
|
272
|
+
|
273
|
+
"font-style",
|
274
|
+
|
275
|
+
"font-variant",
|
276
|
+
|
277
|
+
"font-weight",
|
278
|
+
|
279
|
+
"font-stretch",
|
280
|
+
|
281
|
+
"font-size",
|
282
|
+
|
283
|
+
"line-height",
|
284
|
+
|
285
|
+
"font-family",
|
286
|
+
|
287
|
+
"letter-spacing",
|
288
|
+
|
289
|
+
"text-decoration",
|
290
|
+
|
291
|
+
"text-decoration-color",
|
292
|
+
|
293
|
+
"text-decoration-style",
|
294
|
+
|
295
|
+
"text-decoration-line",
|
296
|
+
|
297
|
+
"text-align",
|
298
|
+
|
299
|
+
"text-indent",
|
300
|
+
|
301
|
+
"text-transform",
|
302
|
+
|
303
|
+
"white-space",
|
304
|
+
|
305
|
+
"word-break",
|
306
|
+
|
307
|
+
"word-spacing",
|
308
|
+
|
309
|
+
"word-wrap",
|
310
|
+
|
311
|
+
"text-shadow",
|
312
|
+
|
313
|
+
"table-layout",
|
314
|
+
|
315
|
+
"border-collapse",
|
316
|
+
|
317
|
+
"border-spacing",
|
318
|
+
|
319
|
+
"empty-cells",
|
320
|
+
|
321
|
+
"caption-side",
|
322
|
+
|
323
|
+
"vertical-align",
|
324
|
+
|
325
|
+
"content",
|
326
|
+
|
327
|
+
"quotes",
|
328
|
+
|
329
|
+
"counter-increment",
|
330
|
+
|
331
|
+
"counter-reset",
|
332
|
+
|
333
|
+
"outline",
|
334
|
+
|
335
|
+
"outline-color",
|
336
|
+
|
337
|
+
"outline-style",
|
338
|
+
|
339
|
+
"outline-width",
|
340
|
+
|
341
|
+
"cursor",
|
342
|
+
|
343
|
+
"resize",
|
344
|
+
|
345
|
+
"transition",
|
346
|
+
|
347
|
+
"transition-property",
|
348
|
+
|
349
|
+
"transition-duration",
|
350
|
+
|
351
|
+
"transition-timing-function",
|
352
|
+
|
353
|
+
"transition-delay",
|
354
|
+
|
355
|
+
"animation",
|
356
|
+
|
357
|
+
"animation-name",
|
358
|
+
|
359
|
+
"animation-duration",
|
360
|
+
|
361
|
+
"animation-timing-function",
|
362
|
+
|
363
|
+
"animation-delay",
|
364
|
+
|
365
|
+
"animation-iteration-count",
|
366
|
+
|
367
|
+
"animation-direction",
|
368
|
+
|
369
|
+
"animation-fill-mode",
|
370
|
+
|
371
|
+
"animation-play-state",
|
372
|
+
|
373
|
+
"unicode-bidi",
|
374
|
+
|
375
|
+
"direction",
|
376
|
+
|
377
|
+
"page-break-before",
|
378
|
+
|
379
|
+
"page-break-after",
|
380
|
+
|
381
|
+
"page-break-inside",
|
382
|
+
|
383
|
+
"widows",
|
384
|
+
|
385
|
+
"orphans"
|
386
|
+
|
387
|
+
]
|
388
|
+
|
389
|
+
]
|
390
|
+
|
391
|
+
}
|
392
|
+
|
393
|
+
|
394
|
+
|
395
|
+
```
|
396
|
+
|
397
|
+
|
398
|
+
|
29
399
|
### 発生している問題・エラーメッセージ
|
30
400
|
|
31
401
|
|
@@ -84,10 +454,8 @@
|
|
84
454
|
|
85
455
|
- エディター:VSCODE
|
86
456
|
|
87
|
-
- 拡張機能:CSScomb
|
457
|
+
- 拡張機能:[CSScomb](https://marketplace.visualstudio.com/items?itemName=mrmlnc.vscode-csscomb)
|
88
|
-
|
458
|
+
|
89
|
-
DartJS Sass Compiler and Sass Watcher
|
459
|
+
[DartJS Sass Compiler and Sass Watcher](https://marketplace.visualstudio.com/items?itemName=codelios.dartsass)
|
90
|
-
|
91
|
-
|
92
460
|
|
93
461
|
**以前から閉じタグの数が合わないと同じ内容のエラーが出ていました。**
|