Skip to content

Commit

Permalink
Merge pull request #58 from ryo-funaba/feat/update_markdownlint_rules
Browse files Browse the repository at this point in the history
feat: markdownlint のルールを更新
  • Loading branch information
ryo-funaba authored Sep 10, 2023
2 parents 866cd90 + 017af66 commit 34519ae
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 15 deletions.
11 changes: 3 additions & 8 deletions .markdownlint.jsonc
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
{
"MD001": false, // 見出しのレベルは、一度に1レベルずつしか増加しないようにする。
"MD003": false, // 見出しのスタイル
"MD013": {
"line_length": 250 // 一行の文字数
"code_block_line_length": 250, // コードブロックの文字数
"line_length": 140, // 一行の文字数
"stern": true // 末尾の空白をチェック
},
"MD014": false, // 出力を表示せずにコマンドの前に使用するドル記号
"MD022": false, // 見出しは空白行で囲む
"MD024":false, // 同じ内容の見出しが複数ある
"MD025":false, // 同一文書内に複数のトップレベル見出しがある
"MD026":false, // 見出しの末尾の句読点
"MD033":false, // インラインHTML
"MD034": false // 裸のURL
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Zenn の記事や本を管理するリポジトリです。
```

- 接続先:`http://localhost:8000`
- <img width="1920" alt="Zennのプレビュー画面" src="https://user-images.githubusercontent.com/59598693/190973996-c777372c-e5ce-43a4-af89-c1c073330ab0.png">
- ![Zennのプレビュー画面](https://user-images.githubusercontent.com/59598693/190973996-c777372c-e5ce-43a4-af89-c1c073330ab0.png)

## 📝 使い方

Expand Down
12 changes: 6 additions & 6 deletions articles/27f223203481ef.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ docker build --ssh default .
3. イメージをビルド

```bash
$ export DOCKER_BUILDKIT=1
$ docker build -t sample_docker_ssh --ssh default .
export DOCKER_BUILDKIT=1
docker build -t sample_docker_ssh --ssh default .
```

- BuildKit での構築を有効化するために `DOCKER_BUILDKIT=1` を環境変数に設定
Expand All @@ -107,7 +107,7 @@ docker build --ssh default .
4. イメージ内にプライベートリポジトリがクローンされたか確認

```bash
$ docker run -it sample_docker_ssh
docker run -it sample_docker_ssh
# コンテナ内で実行
$ ls
Expand Down Expand Up @@ -136,9 +136,9 @@ docker build --ssh default .
2. ビルド

```bash
$ export COMPOSE_DOCKER_CLI_BUILD=1
$ export DOCKER_BUILDKIT=1
$ docker compose build --ssh default
export COMPOSE_DOCKER_CLI_BUILD=1
export DOCKER_BUILDKIT=1
docker compose build --ssh default
```

3. 以上
Expand Down
2 changes: 2 additions & 0 deletions articles/2f925f621e6d99.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ https://job-draft.jp/
# 3. Lint の導入

今回は textlint と markdownlint の導入をそれぞれ紹介します。

## textlint の導入

職務経歴書という仕事・転職に関わる大事な書類ですので、誤字脱字は避けたいです。
Expand Down Expand Up @@ -433,6 +434,7 @@ jobs:
![PDF変換後の職務経歴書](/images/resume_released_pdf.png)

# 6. Web ページとして公開

GitHub Pages という無料のホスティグサービスを使って Web ページとして公開します。

![GitHub Pagesによって公開された職務経歴書のスクリーンショット](/images/resume_github_pages.png)
Expand Down

0 comments on commit 34519ae

Please sign in to comment.