1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

markdownlintのルールをプロジェクト単位で無効化する方法

Posted at

概要

VSCodeの拡張機能でmarkdownlintというmarkdownの文法をチェックしてくれる拡張機能があります。

これをプロジェクト単位で無効化し、不要なルールが反応しないようにする方法を記載します。

方法

  1. プロジェクトのトップフォルダに.markdownlint.jsonを作成します
  2. .markdownlint.jsonを以下のように編集します
.markdownlint.json
{
    "ルールID1": false,
    "ルールID2": false,
    ...
}

参考

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?