1
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?

Visual Studio Codeの拡張機能「Code Spell Checker」(cSpell)で、「Unknown word」(未知の単語のアラート)が出る

Last updated at Posted at 2025-02-23

問題

Visual Studio Codeの拡張機能「Code Spell Checker」(cSpell)で、「Unknown word」(未知の単語のアラート)が出る(画像のような形)

"supabase": Unknown word.cSpell
"qiita": Unknown word.cSpell

image.png

解決方法

アラートを無効化する方法を確認しました。

他にもやり方はあるみたいですが、今回はpackage.jsonに以下を追加しました。
注意として、最後のワードの後に「,」があると機能しないです。

package.json
  "cspell": {
    "words": [
      "qiita",
      "supabase",
      "vite"
    ]
  }

おわりに

そもそも拡張機能「Code Spell Checker」(cSpell)という機能があることを知らなかったです。
簡単に修正できました。

1
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
1
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?