Skip to content

Commit 24059d4

Browse files
committed
fix: markdown lint
Signed-off-by: prisis <[email protected]>
1 parent 34be093 commit 24059d4

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

.github/CONTRIBUTING.md

Whitespace-only changes.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ This project is a code style guide of all basic back- and front end project used
4040
## Supported Node.js Versions
4141

4242
Libraries in this ecosystem make the best effort to track
43-
[Node.js' release schedule](https://nodejs.org/en/about/releases/). Here's [a
43+
[Node.js release schedule](https://nodejs.org/en/about/releases/). Heres [a
4444
post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
4545

4646
Contributing

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"postinstall": "is-ci || husky install",
2222
"lint:staged": "lint-staged --verbose",
2323
"lint:styles": "stylelint",
24-
"lint:text": "textlint --config=./.textlintrc \"./packages/**/README.md\" ./README.md ./UPGRADE.md --parallel --experimental",
25-
"lint:text:fix": "yarn run lint:text --fix",
24+
"lint:text": "textlint \"./packages/**/README.md\" ./README.md ./UPGRADE.md --dry-run --parallel --experimental",
25+
"lint:text:fix": "textlint \"./packages/**/README.md\" ./README.md ./UPGRADE.md --parallel --experimental --fix",
2626
"prettier": "prettier --config=.prettierrc.cjs --write '**/*.{js,jsx,cjs,tsx,ts,less,md,json}'",
2727
"sort-package-json": "sort-package-json packages/**/package.json",
2828
"test": "jest --config=./jest.config.cjs",

packages/babel-preset/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -328,17 +328,17 @@ You can use the `corejs` option to enable the use of the core-js v3 polyfills:
328328
## Optimizations
329329

330330
- [`babel-plugin-annotate-pure-calls`](https://github.com/Andarist/babel-plugin-annotate-pure-calls): Injects for `#__PURE` annotations to enable tree-shaking
331-
- [`babel-plugin-dev-expressions`](https://github.com/4Catalyzer/babel-plugin-dev-expression): A mirror of Facebook's dev-expression Babel plugin. It reduces or eliminates development checks from production code
331+
- [`babel-plugin-dev-expressions`](https://github.com/4Catalyzer/babel-plugin-dev-expression): A mirror of Facebooks dev-expression Babel plugin. It reduces or eliminates development checks from production code
332332

333333
### Development-only Expressions + Treeshaking
334334

335-
`babel-plugin-annotate-pure-calls` + `babel-plugin-dev-expressions` work together to fully eliminate dead code (aka treeshake) development checks from your production code. Let's look at an example to see how it works.
335+
`babel-plugin-annotate-pure-calls` + `babel-plugin-dev-expressions` work together to fully eliminate dead code (aka treeshake) development checks from your production code. Lets look at an example to see how it works.
336336

337337

338338
## Supported Node.js Versions
339339

340340
Libraries in this ecosystem make the best effort to track
341-
[Node.js' release schedule](https://nodejs.org/en/about/releases/). Here's [a
341+
[Node.js release schedule](https://nodejs.org/en/about/releases/). Heres [a
342342
post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
343343

344344
Contributing

packages/browserslist-config-anolilab/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Or when using [babel-preset-env](https://github.com/babel/babel/tree/master/expe
9797
## Supported Node.js Versions
9898

9999
Libraries in this ecosystem make the best effort to track
100-
[Node.js' release schedule](https://nodejs.org/en/about/releases/). Here's [a
100+
[Node.js release schedule](https://nodejs.org/en/about/releases/). Heres [a
101101
post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
102102

103103
Contributing

packages/eslint-config/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ESLint config
22

3-
This package provides Anolilab’s .eslintrc.cjs as an extensible shared config, with a range of useful plugins that are often too time-consuming to setup and provides an easy way to install just the plugins you need, based on your project’s dependencies.
3+
This package provides Anolilab’s .eslintrc.cjs as an extensible shared config, with a range of useful plugins that are often too time-consuming to setup and provides an install the plugins you need, based on your project’s dependencies.
44

55
---
66

@@ -297,7 +297,7 @@ Therefore, `@anolilab/eslint-config` also inherits the philosophy of ESLint. It
297297
## Supported Node.js Versions
298298

299299
Libraries in this ecosystem make the best effort to track
300-
[Node.js' release schedule](https://nodejs.org/en/about/releases/). Here's [a
300+
[Node.js release schedule](https://nodejs.org/en/about/releases/). Heres [a
301301
post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
302302

303303
Contributing

packages/prettier-config/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ module.exports = {
5555
## Supported Node.js Versions
5656

5757
Libraries in this ecosystem make the best effort to track
58-
[Node.js' release schedule](https://nodejs.org/en/about/releases/). Here's [a
58+
[Node.js release schedule](https://nodejs.org/en/about/releases/). Heres [a
5959
post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
6060

6161
Contributing

packages/semantic-release-preset/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ Add `cz` to your `package.json scripts`
128128

129129
Ensure that your CI configuration has the following environment variables set:
130130

131-
- GITHUB_TOKEN: [A GitHub personal access token](https://docs.github.com/en/github/authenticating-to-github/keeping-your-account-and-data-secure/creating-a-personal-access-token)
132-
- NPM_TOKEN: [A npm personal access token](https://www.npmjs.com/settings)
131+
- GITHUB_TOKEN: [A GitHub personal access token](https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token)
132+
- NPM_TOKEN: [A npm personal access token](https://www.npmjs.com/package/settings)
133133

134134
You can test your config with a dry run:
135135

@@ -252,7 +252,7 @@ jobs:
252252
253253
## Note on GitHub protected branches
254254
255-
If you’re releasing a [GitHub protected branch](https://docs.github.com/en/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches) you need to change the git committer to an owner/admin and allow repo admins to bypass the branch protection (make sure "include administrators" is disabled in the branch protection rules.)
255+
If you’re releasing a [GitHub protected branch](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/about-protected-branches) you need to change the git committer to an owner/admin and allow repo admins to bypass the branch protection (make sure "include administrators" is disabled in the branch protection rules.)
256256
257257
If your repo is under an organisation, you can create a bot account and give it admin rights on the repo. If your repo is under a personal account, you have no choice to make the repo owner the commiter for the release.
258258
@@ -263,7 +263,7 @@ Either way, you have to create a GitHub personal access token for the committer
263263
## Supported Node.js Versions
264264
265265
Libraries in this ecosystem make the best effort to track
266-
[Node.js' release schedule](https://nodejs.org/en/about/releases/). Here's [a
266+
[Node.js release schedule](https://nodejs.org/en/about/releases/). Heres [a
267267
post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
268268
269269
Contributing

packages/stylelint-config/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Add this command to your `package.json` scripts section
7171
## Supported Node.js Versions
7272

7373
Libraries in this ecosystem make the best effort to track
74-
[Node.js' release schedule](https://nodejs.org/en/about/releases/). Here's [a
74+
[Node.js release schedule](https://nodejs.org/en/about/releases/). Heres [a
7575
post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
7676

7777
Contributing

packages/textlint-config/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ If you already have a `.textlintrc`, then you can extend the `.textlintrc`, with
177177
## Supported Node.js Versions
178178

179179
Libraries in this ecosystem make the best effort to track
180-
[Node.js' release schedule](https://nodejs.org/en/about/releases/). Here's [a
180+
[Node.js release schedule](https://nodejs.org/en/about/releases/). Heres [a
181181
post on why we think this is important](https://medium.com/the-node-js-collection/maintainers-should-consider-following-node-js-release-schedule-ab08ed4de71a).
182182

183183
Contributing

0 commit comments

Comments
 (0)