File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
12
12
13
13
### Changed
14
14
- [ Docs] [ ` no-duplicates ` ] : fix example schema ([ #2684 ] , thanks [ @simmo ] )
15
+ - [ Docs] [ ` group-exports ` ] : fix syntax highlighting ([ #2699 ] , thanks [ @devinrhode2 ] )
15
16
16
17
## [ 2.27.5] - 2023-01-16
17
18
@@ -1064,6 +1065,7 @@ for info on changes for earlier releases.
1064
1065
1065
1066
[ `memo-parser` ] : ./memo-parser/README.md
1066
1067
1068
+ [ #2699 ] : https://github.com/import-js/eslint-plugin-import/pull/2699
1067
1069
[ #2664 ] : https://github.com/import-js/eslint-plugin-import/pull/2664
1068
1070
[ #2613 ] : https://github.com/import-js/eslint-plugin-import/pull/2613
1069
1071
[ #2608 ] : https://github.com/import-js/eslint-plugin-import/pull/2608
@@ -1654,6 +1656,7 @@ for info on changes for earlier releases.
1654
1656
[ @darkartur ] : https://github.com/darkartur
1655
1657
[ @davidbonnet ] : https://github.com/davidbonnet
1656
1658
[ @dbrewer5 ] : https://github.com/dbrewer5
1659
+ [ @devinrhode2 ] : https://github.com/devinrhode2
1657
1660
[ @devongovett ] : https://github.com/devongovett
1658
1661
[ @dmnd ] : https://github.com/dmnd
1659
1662
[ @duncanbeevers ] : https://github.com/duncanbeevers
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ test.another = true
62
62
module .exports = test
63
63
```
64
64
65
- ``` flow js
65
+ ``` ts
66
66
const first = true ;
67
67
type firstType = boolean
68
68
@@ -105,7 +105,7 @@ module.exports.first = true
105
105
module .exports .second = true
106
106
```
107
107
108
- ``` flow js
108
+ ``` ts
109
109
type firstType = boolean
110
110
type secondType = any
111
111
You can’t perform that action at this time.
0 commit comments