Skip to content

Commit 069afa7

Browse files
committed
markdownlint
1 parent 3ffdadd commit 069afa7

File tree

330 files changed

+4172
-4184
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

330 files changed

+4172
-4184
lines changed

.markdownlint-cli2.jsonc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"config": {
3+
"line-length": false, // MD013 行の長さ
4+
"no-hard-tabs": false, // MD010 Markdown中にTSVを書くとエラーになるため
5+
"no-trailing-punctuation": false, // MD026 ヘディングに句読点(.,;:!?)を許容したい
6+
"no-inline-html": false, // MD033 HTMLは許容
7+
"no-bare-urls": false, // MD034 URLのリンク化条件
8+
"no-space-in-emphasis":false, // MD037 $$など数式で問題になったため外す
9+
"link-fragments":false // MD051 相対パス設定
10+
},
11+
"ignores": [".git", "node_modules"] // 無視するディレクトリ
12+
}
13+

.textlintrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"no-exclamation-question-mark": false,
99
"ja-no-weak-phrase": false
1010
},
11-
"spellcheck-tech-word": true
11+
"spellcheck-tech-word": true,
12+
"preset-ja-spacing": false
1213
}
1314
}

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ SHELL := /bin/bash
44
s:
55
node_modules/.bin/hexo s
66

7+
fmt:
8+
node_modules/.bin/markdownlint-cli2 --fix "**/*.md"
9+
710
lint:
811
npx lint-staged
912

0 commit comments

Comments
 (0)