Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Docs] group-exports: fix syntax highlighting #2699

Merged
merged 1 commit into from Feb 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -12,6 +12,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange

### Changed
- [Docs] [`no-duplicates`]: fix example schema ([#2684], thanks [@simmo])
- [Docs] [`group-exports`]: fix syntax highlighting ([#2699], thanks [@devinrhode2])

## [2.27.5] - 2023-01-16

Expand Down Expand Up @@ -1064,6 +1065,7 @@ for info on changes for earlier releases.

[`memo-parser`]: ./memo-parser/README.md

[#2699]: https://github.com/import-js/eslint-plugin-import/pull/2699
[#2664]: https://github.com/import-js/eslint-plugin-import/pull/2664
[#2613]: https://github.com/import-js/eslint-plugin-import/pull/2613
[#2608]: https://github.com/import-js/eslint-plugin-import/pull/2608
Expand Down Expand Up @@ -1654,6 +1656,7 @@ for info on changes for earlier releases.
[@darkartur]: https://github.com/darkartur
[@davidbonnet]: https://github.com/davidbonnet
[@dbrewer5]: https://github.com/dbrewer5
[@devinrhode2]: https://github.com/devinrhode2
[@devongovett]: https://github.com/devongovett
[@dmnd]: https://github.com/dmnd
[@duncanbeevers]: https://github.com/duncanbeevers
Expand Down
4 changes: 2 additions & 2 deletions docs/rules/group-exports.md
Expand Up @@ -62,7 +62,7 @@ test.another = true
module.exports = test
```

```flow js
```ts
const first = true;
type firstType = boolean

Expand Down Expand Up @@ -105,7 +105,7 @@ module.exports.first = true
module.exports.second = true
```

```flow js
```ts
type firstType = boolean
type secondType = any

Expand Down