Skip to content

Commit 1f17c69

Browse files
authored
chore: bump eslint-markdown to 0.5.0 (#1463)
This pull request makes minor updates to the workflow configuration and development dependencies. The workflow for text linting is expanded to include `package.json` as a trigger, and the `eslint-markdown` dependency is updated to a newer version. - **Workflow Configuration Updates:** * The `.github/workflows/textlint_lint.yml` workflow now also triggers on changes to `package.json`, in addition to the existing paths. - **Dependency Updates:** * Upgraded the `eslint-markdown` package in `package.json` from version `^0.1.0-canary.12` to `^0.5.0`.
1 parent 4552962 commit 1f17c69

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/textlint_lint.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- 'src/**/*.md'
99
- 'textlint/**/*.js'
1010
- '.github/workflows/textlint_lint.yml'
11+
- 'package.json'
1112

1213
pull_request:
1314
types:
@@ -18,6 +19,7 @@ on:
1819
- 'src/**/*.md'
1920
- 'textlint/**/*.js'
2021
- '.github/workflows/textlint_lint.yml'
22+
- 'package.json'
2123

2224
jobs:
2325
Lint:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
"eslint-plugin-import": "2.x",
7777
"eslint-plugin-jsx-a11y": "6.x",
7878
"eslint-plugin-local-rules": "link:eslint-local-rules",
79-
"eslint-markdown": "^0.1.0-canary.12",
79+
"eslint-markdown": "^0.5.0",
8080
"eslint-plugin-react": "7.x",
8181
"eslint-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
8282
"eslint-plugin-react-hooks": "^0.0.0-experimental-fabef7a6b-20221215",

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3741,10 +3741,10 @@ eslint-import-resolver-typescript@^2.4.0:
37413741
resolve "^1.22.0"
37423742
tsconfig-paths "^3.14.1"
37433743

3744-
eslint-markdown@^0.1.0-canary.12:
3745-
version "0.1.0-canary.12"
3746-
resolved "https://registry.yarnpkg.com/eslint-markdown/-/eslint-markdown-0.1.0-canary.12.tgz#755c255f254bd428e76e7cb98e10ad458c488638"
3747-
integrity sha512-iTEHFxLW2QumAgGEJjNb835zJtBGUvXA0JtuRzRjIzevjLlPkXwAJ9QM/33T5OWapb0sUADxDtkxoVbogvOshA==
3744+
eslint-markdown@^0.5.0:
3745+
version "0.5.0"
3746+
resolved "https://registry.yarnpkg.com/eslint-markdown/-/eslint-markdown-0.5.0.tgz#09f142af02801c87431bc491c093c9d34e6e24ea"
3747+
integrity sha512-EVY0viuqqPLNxo+/hcSuSsG2OhKlAi+NOzSICLZk1WqgI5OzAwGBELXnN6KoZWNp/ISzzeRtvUayavv9tlSpvg==
37483748
dependencies:
37493749
"@eslint/markdown" "^7.5.1"
37503750
micromark-util-normalize-identifier "^2.0.1"

0 commit comments

Comments
 (0)