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

ひとりアドベントカレンダーチャレンジAdvent Calendar 2024

Day 13

`console`がimportされてうっとうしいのを解決する方法

Posted at

はじめに

console.logを打ちたいだけなのに、import { log } from "console";が勝手にimportされてエラーになる...なんてことはありませんか?

Next.jsで開発しているとあるあるだと思うのですが、これが発生するとエラーになり少しうっとうしいのですよね。

今回はそれを解決する方法を紹介したいと思います。

解決法

VSCodeのSnippets機能を使う

これを使用すると....

test1.gif

このように、勝手にimport { log } from "console";を追加されることがなくなります!

手順

  1. 任意の拡張子のsnippetsファイルを作成
  2. .vscode/setting.jsonに追記

この2ステップだけです。
順に解説していきます。

1.任意の拡張子のsnippetsファイルを作成

今回はNext.jsを想定しているので、とりあえず***.ts***.tsxで設定します。

以下のコマンドをプロジェクトルートにて実行します。

  • .tsx
terminal
$ mkdir -p ./.vscode && [ -f ./.vscode/tsx.code-snippets ] && echo "Error: ./.vscode/tsx.code-snippets already exists" || echo '{
  "console.log": {
    "prefix": "log",
    "body": ["console.log('\''$1'\'');"],
    "description": "Log output to console"
  }
}' > ./.vscode/tsx.code-snippets
  • .ts
terminal
$ mkdir -p ./.vscode && [ -f ./.vscode/ts.code-snippets ] && echo "Error: ./.vscode/ts.code-snippets already exists" || echo '{
  "console.log": {
    "prefix": "log",
    "body": ["console.log('\''$1'\'');"],
    "description": "Log output to console"
  }
}' > ./.vscode/ts.code-snippets
Error: ./.vscode/(tsx | ts).code-snippets already existsが表示された場合

ファイルがすでに存在する場合、上書きを防ぐためエラーを出すようにしてあります。
その場合、手作業でファイル内に以下を追加してください。

tsx.code-snippets
{
  ....省略
  "console.log": {
    "prefix": "log",
    "body": ["console.log('\''$1'\'');"],
    "description": "Log output to console"
  }
}
ts.code-snippets
{
  ....省略
  "console.log": {
    "prefix": "log",
    "body": ["console.log('\''$1'\'');"],
    "description": "Log output to console"
  }
}

2..vscode/setting.jsonに追記

1の設定だけでは充分でないので、最後に.vscode/setting.jsonへ追記を行います。

.vscode/setting.json
{
  ...省略
  "editor.snippetSuggestions": "top"
}

この設定を追加することで、snippetsに登録されたものは補完時に優先され、一番上に表示されるようになります。

スクリーンショット 2024-12-21 12.32.40.png

$\tiny{↑ずっと邪魔してきていた"console"が4番目に...!}$

これで設定は完了となります。

さいごに

こういった集中力が削がれるような小さな問題を積極的に解決して、快適な開発環境を整えていきたいですね。

最後までお読みいただきありがとうございました!

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