Skip to content

Commit 9a67d1e

Browse files
committed
chore: rebuild readme
1 parent 7e2bf41 commit 9a67d1e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ $ npm install --save-dev eslint eslint-plugin-n
9393
| Rule ID | Description | |
9494
|:--------|:------------|:--:|
9595
| [n/callback-return](./docs/rules/callback-return.md) | require `return` statements after callbacks | |
96-
| [n/exports-style](./docs/rules/exports-style.md) | enforce either `module.exports` or `exports` | |
96+
| [n/exports-style](./docs/rules/exports-style.md) | enforce either `module.exports` or `exports` | ✒️ |
9797
| [n/file-extension-in-import](./docs/rules/file-extension-in-import.md) | enforce the style of file extensions in `import` declarations | ✒️ |
9898
| [n/global-require](./docs/rules/global-require.md) | require `require()` calls to be placed at top-level module scope | |
9999
| [n/no-mixed-requires](./docs/rules/no-mixed-requires.md) | disallow `require` calls to be mixed with regular variable declarations | |

docs/rules/exports-style.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# n/exports-style
22
> enforce either `module.exports` or `exports`
3+
> - ✒️ The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
34
45
`module.exports` and `exports` are the same instance by default.
56
But those come to be different if one of them is modified.

0 commit comments

Comments
 (0)