Skip to content

Commit fd75f09

Browse files
committed
Docs: minor fix
1 parent f02bc9b commit fd75f09

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ This preset config:
9595
- An existing option of a rule is removed.
9696
- An existing config is updated.
9797

98-
## :memo: Changelog
98+
## :newspaper: Changelog
9999

100100
- [GitHub Releases](https://github.com/mysticatea/eslint-plugin-node/releases)
101101

docs/rules/no-unpublished-import.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ If a source code file satisfies all of the following conditions, the file is \*p
1111
- `"files"` field of `package.json` includes the file. (or `"files"` field of `package.json` does not exist)
1212
- `.npmignore` does not include the file.
1313

14-
This rule disallows importing the following things from the \*published* files.
14+
**This rule disallows importing the following things from the \*published\* files.**
1515

1616
- Unpublished files.
1717
- Extraneous modules.
@@ -20,7 +20,7 @@ This rule disallows importing the following things from the \*published* files.
2020
> This intends to prevent "Module Not Found" error after `npm publish`.<br>
2121
> :bulb: If you want to import `devDependencies`, please write `.npmignore` or `"files"` field of `package.json`.
2222
23-
This rule disallows importing the following things from the \*unpublished* files.
23+
**This rule disallows importing the following things from the \*unpublished\* files.**
2424

2525
- Extraneous modules.
2626

docs/rules/no-unpublished-require.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ If a source code file satisfies all of the following conditions, the file is \*p
1010
- `"files"` field of `package.json` includes the file. (or `"files"` field of `package.json` does not exist)
1111
- `.npmignore` does not include the file.
1212

13-
This rule disallows importing the following things from the \*published* files.
13+
**This rule disallows importing the following things from the \*published\* files.**
1414

1515
- Unpublished files.
1616
- Extraneous modules.
@@ -19,7 +19,7 @@ This rule disallows importing the following things from the \*published* files.
1919
> This intends to prevent "Module Not Found" error after `npm publish`.<br>
2020
> :bulb: If you want to import `devDependencies`, please write `.npmignore` or `"files"` field of `package.json`.
2121
22-
This rule disallows importing the following things from the \*unpublished* files.
22+
**This rule disallows importing the following things from the \*unpublished\* files.**
2323

2424
- Extraneous modules.
2525

0 commit comments

Comments
 (0)