Skip to content

Commit

Permalink
test(posts/2021): add 2021 lint (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
9renpoto authored Feb 12, 2024
1 parent ee78226 commit 0715c33
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 26 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/textlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

strategy:
matrix:
year: [2024, 2023]
year: [2024, 2023, 2021]

steps:
- name: Setup repo
Expand All @@ -33,4 +33,3 @@ jobs:

- run: deno cache __tests__/deps.ts
- run: find posts/${{ matrix.year }} -name '*.md' | sort | xargs -I file deno task lint file

3 changes: 1 addition & 2 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"9renpoto",
"bluesky",
"denoland",
"healthz",
"ROLLCAKE"
"healthz"
]
}
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 @@ -30,16 +27,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"]
}
6 changes: 3 additions & 3 deletions posts/2020/11/21/brew.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ title: Brew Alternative Installs ( Intel mac )
> here. Pick another prefix at your peril!
- もともとinstall `/user/local`
配下にインストールが推奨されていたが適切な場所ではないと判断し `/opt/homebew`
配下にインストールが推奨されていたが適切な場所ではないと判断し `/opt/homebrew`
へinstallを変更していた
- 今回 **ARM** 版Macの誕生により`/opt/homebew` 配下へのinstallが推奨され、 Intel
Macで `/opt/homebew` 配下にbrewを配置している場合動かなくなっていそう
- 今回 **ARM** 版Macの誕生により`/opt/homebrew` 配下へのinstallが推奨され、
Intel Macで `/opt/homebrew` 配下にbrewを配置している場合動かなくなっていそう

```
Error: Cannot install in Homebrew on Intel processor in ARM default prefix (/opt/homebrew)!
Expand Down
2 changes: 1 addition & 1 deletion posts/2020/12/05/join.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ title: CADDi株式会社にJoinしました
今回、会社員としてJoinを決めたわけですが

1. なんだかんだで頑張れば手が届くコンフォートゾーンを抜けて己の力を試す
1. [もう1つ以上、別の尖った技術スタックがほしい](/entry/2020/04/15/whoami)
1. [もう1つ以上、別の尖った技術スタックがほしい](https://9renpoto.win/entry/2020/04/15/whoami)
1. [つくる人を増やす](https://www.kayac.com/vision/vision)ために技術を使いたい

といったことにフォーカスしてしばらくコミットしたいと思います。
Expand Down
5 changes: 3 additions & 2 deletions posts/2021/02/13/google-analytics-4.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ title: GoogleAnalytics 4でカスタムディメンションが設定できて
- タグマネージャーからは **ユーザープロパティ****設定フィールド** という2
種類の概念が登場する
- https://support.google.com/tagmanager/answer/9442095?hl=ja
- `config` で設定するか `dataLayer` で設定するか
- `config` で設定するか
- `dataLayer` で設定するか
- 一時的なものか恒久的なものかで設定の方法が違う?
- GoogleAnalyticsの設定のデバッグには
https://chrome.google.com/webstore/detail/google-analytics-debugger/jnkmfdileelhofjcijamephohjechhna/reviews?hl=ja
Expand All @@ -38,7 +39,7 @@ title: GoogleAnalytics 4でカスタムディメンションが設定できて

- データを送っているようで入ってほしいところにはいらない
- debug viewからはdata
は送ってそうに見えるがユーザープロパティとしてデータが送られることが正しそうなのにそのように見えない
は送ってそうに見えるがユーザープロパティとしてデータを送られることが正しそうなのにそのように見えない
- データが正しく適応できていないため目的のフォーマットでデータがはいらない
- Google Tag Managerを経由して変数をGA4にわたす場合
- `dataLayer` 変数を経由して渡す必要があると思っているがうまく渡らない
Expand Down

0 comments on commit 0715c33

Please sign in to comment.