3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Stylelint 14とVSCode拡張を動かすためにやったこと

Last updated at Posted at 2021-10-29

ハローユーチューブ!

先日 Stylelint 14 がリリースされました。
VSCode の Stylelint 拡張も一緒にアップデートされました。
こいつら Stylelint 13 との互換性ないんだってさ!拡張が自動更新されてひどい目にあいました。 f**k!
しょうがないので対応したことをシェアします。

調べよう

前提

  • Vue.js を使ってます。
  • SCSS を使ってます。

多分それっぽい箇所を飛ばせば他の環境にも使えると思います。

やったこと

VSCode の Stylelint 拡張は、前述の通り勝手に最新版になっていました。

まずは postcss 関係を自分で入れる必要があるらしい。
Vue.js の SFC (.vueファイル) も実は postcss で処理されてたらしいので、とりあえず postcss-html を入れる。
SCSS を使っているので postcss-scss も入れる。

npm i -D postcss postcss-html postcss-scss

Stylelint 関係で使っていたパッケージも適当に latest にする。各自適当に読み替えてください。
stylelint-config-html は SFC を扱うために追加した。

npm i -D stylelint@latest \
 stylelint-config-html@latest \
 stylelint-config-prettier@latest \
 stylelint-config-recess-order@latest \
 stylelint-config-standard@latest \
 stylelint-scss@latest

stylelintrcextendstylelint-config-html/vue を追加して、 SFC を扱えるようにする。うちのは JSON 形式です。

   "extends": [
+    "stylelint-config-html/vue",
     "stylelint-config-standard",
     "stylelint-config-prettier",
     "stylelint-config-recess-order"
   ],

おなじく stylelintrcoverridespostscss の設定を追加する。

+  "overrides": [
+    {
+      "files": ["**/*.scss"],
+      "customSyntax": "postcss-scss"
+    }
+  ],

VSCode の settings.jsonstylelint.validate を追加する。ここで vue も対象にするのがポイント。
なんとなく css.validate とかも無効にしておく。

+  "css.validate": false,
+  "scss.validate": false,
+  "stylelint.validate": ["css", "scss", "vue"],

うちはこれでなんとかなりました。

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?