Skip to content

Commit

Permalink
feat: add new post (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
9renpoto authored May 29, 2024
1 parent 2900e5e commit e0d08de
Show file tree
Hide file tree
Showing 7 changed files with 61 additions and 20 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/cspell.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Check spelling
on:
pull_request:
pull_request: null
jobs:
spellcheck:
runs-on: ubuntu-latest
Expand All @@ -10,3 +10,5 @@ jobs:
with:
incremental_files_only: true
strict: false
words:
- textlint
2 changes: 1 addition & 1 deletion .github/workflows/textlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
deno-version: v1.43.6

- run: deno cache __tests__/deps.ts
- run: find posts/${{ matrix.year }} -name '*.md' | sort | xargs -I file deno task lint file
15 changes: 15 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
repos:
- repo: https://github.com/streetsidesoftware/cspell-cli
rev: v8.8.2
hooks:
- id: cspell
- repo: https://github.com/hadolint/hadolint
rev: v2.12.0
hooks:
- id: hadolint
- repo: local
hooks:
- id: secretlint
name: secretlint
language: docker_image
entry: secretlint/secretlint:latest secretlint
5 changes: 4 additions & 1 deletion cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@
"9renpoto",
"bluesky",
"denoland",
"hadolint",
"healthz",
"preact"
"preact",
"tailwindcss",
"textlint"
]
}
19 changes: 3 additions & 16 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@
"lint": "deno run -A npm:textlint",
"preview": "deno run -A main.ts"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"lock": false,
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
Expand All @@ -29,16 +26,6 @@
"$gfm": "https://deno.land/x/[email protected]/mod.ts",
"$ga4": "https://raw.githubusercontent.com/denoland/ga4/main/mod.ts"
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"exclude": [
"**/_fresh/*",
"cache"
]
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*", "cache"]
}
34 changes: 34 additions & 0 deletions posts/2024/05/29/im-an-early.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
date: '2024-05-29'
title: 朝型
snippet: I'm an early
---

# 近況

- パパ育休をもらって里帰り先より生活の基盤を移しました
- 生活スタイルを朝型にシフト中です

## 大きく変わった生活

子供中心の時間設計を模索中。深夜対応は新規システムのオンコール対応の気分(アラートは大きめ)。
夜は割とぐっすり寝てくれていて、ミルクは過剰に与えすぎてなくても良い。

寝かしつけは練習中で22-24時台のミルク前後テンションが高い。
夜に自分の時間を作ることはその関係で悩んでいる。朝のミルクタイミングから起きて洗濯なり自分の時間を作っている。

仕事も早朝よりさせてもらうほうが今のところ便利が良さそうだ。

## 体調

引っ越しや新生児の受け入れなどで筋トレのリズムが狂っている。
肩腰の違和感が起きやすい。体脂肪も上がったままだ。

育児と仕事と健康のリズムを安定させることの優先度が高い。

## 料理

最近台所を預かっている。まだスーパーの事情を把握できていない。
世間はキャベツ🥬が高く茄子🍆 の美味しい季節になったようだ。

朝型になった関係で朝ご飯の需要が高まっている。効率の良い便利な朝ご飯を知りたい。
2 changes: 1 addition & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { type Config } from "tailwindcss";
import type { Config } from "tailwindcss";

export default {
content: [
Expand Down

0 comments on commit e0d08de

Please sign in to comment.