質問編集履歴

2

問合に対する現状報告

2021/12/23 05:58

投稿

mendel
mendel

スコア27

test CHANGED
File without changes
test CHANGED
@@ -139,3 +139,71 @@
139
139
 
140
140
 
141
141
  問題の状況は改善しておりません。
142
+
143
+
144
+
145
+ -----
146
+
147
+ > CSS Language Features は、これです。
148
+
149
+
150
+
151
+ ![イメージ説明](1d632bb3634af1ed0bf637104d6de698.png)
152
+
153
+ 上記のように「無効にする」状態になっております。
154
+
155
+
156
+
157
+ > また、ワークスペースの settings.json で試しているということは、他のワークスペースでは問題が発生していないということでいいですか?
158
+
159
+
160
+
161
+ いいえ。
162
+
163
+ HTML+CSSのみのプロジェクトやReact.jsのプロジェクトで同じ現象が発生しています。
164
+
165
+ ユーザー設定でsettings.jsonを編集したことがないです。
166
+
167
+
168
+
169
+ また以下のURL
170
+
171
+ https://dev.classmethod.jp/articles/vscode-automatic-language-detection-disable/
172
+
173
+ に従い自動検出設定を無効化しましたが問題の状況は改善しておりません。
174
+
175
+
176
+
177
+ 現在のワークスペースsetting.jsonの設定
178
+
179
+
180
+
181
+ ```json
182
+
183
+ {
184
+
185
+ "editor.colorDecorators": true,
186
+
187
+ "files.associations": {
188
+
189
+ "*.css": "css",
190
+
191
+ "*.postcss": "css"
192
+
193
+ },
194
+
195
+ "workbench.editor.languageDetection": false
196
+
197
+ }
198
+
199
+ ```
200
+
201
+
202
+
203
+ Tailwind CSS IntelliSenseプラグインを無効化した状態で
204
+
205
+ Tailwindを用いたjsxファイルでは色見本が表示されます。
206
+
207
+ この時の言語設定はreactと認識されています。
208
+
209
+ ![イメージ説明](f837054bca3f02a9a447af6bb5098629.png)

1

vscodeのバージョンアップとsettings.jsonの追記

2021/12/23 05:58

投稿

mendel
mendel

スコア27

test CHANGED
File without changes
test CHANGED
@@ -87,3 +87,55 @@
87
87
 
88
88
 
89
89
  よろしくお願いします。
90
+
91
+
92
+
93
+ その後
94
+
95
+ vscodeの更新通知があったので適用しました。
96
+
97
+
98
+
99
+ ```
100
+
101
+ $ code --version
102
+
103
+ 1.63.2
104
+
105
+ 899d46d82c4c95423fb7e10e68eba52050e30ba3
106
+
107
+ x64
108
+
109
+ ```
110
+
111
+
112
+
113
+ また以下の記述を参考にsettings.jsonを次のように変更しました。
114
+
115
+
116
+
117
+ [https://github.com/microsoft/vscode/issues/17419](https://github.com/microsoft/vscode/issues/17419)
118
+
119
+
120
+
121
+ ```json
122
+
123
+ {
124
+
125
+ "editor.colorDecorators": true,
126
+
127
+ "files.associations": {
128
+
129
+ "*.css": "css",
130
+
131
+ "*.postcss": "css"
132
+
133
+ }
134
+
135
+ }
136
+
137
+ ```
138
+
139
+
140
+
141
+ 問題の状況は改善しておりません。