Skip to content

Commit

Permalink
[Docs] add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanGst authored and ljharb committed Dec 19, 2024
1 parent 1dc101b commit aee018f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
### Changed
- [Docs] [`extensions`], [`order`]: improve documentation ([#3106], thanks [@Xunnamius])
- [Docs] add flat config guide for using `tseslint.config()` ([#3125], thanks [@lnuvy])
- [Docs] add missing comma ([#3122], thanks [@RyanGst])

## [2.31.0] - 2024-10-03

Expand Down Expand Up @@ -1163,6 +1164,7 @@ for info on changes for earlier releases.
[`memo-parser`]: ./memo-parser/README.md

[#3125]: https://github.com/import-js/eslint-plugin-import/pull/3125
[#3122]: https://github.com/import-js/eslint-plugin-import/pull/3122
[#3106]: https://github.com/import-js/eslint-plugin-import/pull/3106
[#3097]: https://github.com/import-js/eslint-plugin-import/pull/3097
[#3073]: https://github.com/import-js/eslint-plugin-import/pull/3073
Expand Down Expand Up @@ -1982,6 +1984,7 @@ for info on changes for earlier releases.
[@rosswarren]: https://github.com/rosswarren
[@rperello]: https://github.com/rperello
[@rsolomon]: https://github.com/rsolomon
[@RyanGst]: https://github.com/
[@s-h-a-d-o-w]: https://github.com/s-h-a-d-o-w
[@saschanaz]: https://github.com/saschanaz
[@schmidsi]: https://github.com/schmidsi
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ All rules are off by default. However, you may extend one of the preset configs,
```jsonc
{
"rules": {
"import/no-unresolved": ["error", { "commonjs": true, "amd": true }]
"import/no-unresolved": ["error", { "commonjs": true, "amd": true }],
"import/named": "error",
"import/namespace": "error",
"import/default": "error",
Expand Down

0 comments on commit aee018f

Please sign in to comment.