File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,9 @@ This change log adheres to standards from [Keep a CHANGELOG](https://keepachange
6
6
7
7
## [ Unreleased]
8
8
9
+ ### Changed
10
+ - [ Docs] [ ` no-duplicates ` ] : fix example schema ([ #2684 ] , thanks [ @simmo ] )
11
+
9
12
## [ 2.27.5] - 2023-01-16
10
13
11
14
### Fixed
@@ -1381,6 +1384,7 @@ for info on changes for earlier releases.
1381
1384
[ #211 ] : https://github.com/import-js/eslint-plugin-import/pull/211
1382
1385
[ #164 ] : https://github.com/import-js/eslint-plugin-import/pull/164
1383
1386
[ #157 ] : https://github.com/import-js/eslint-plugin-import/pull/157
1387
+ [ #2684 ] : https://github.com/import-js/eslint-plugin-import/issues/2684
1384
1388
[ #2674 ] : https://github.com/import-js/eslint-plugin-import/issues/2674
1385
1389
[ #2668 ] : https://github.com/import-js/eslint-plugin-import/issues/2668
1386
1390
[ #2666 ] : https://github.com/import-js/eslint-plugin-import/issues/2666
@@ -1800,6 +1804,7 @@ for info on changes for earlier releases.
1800
1804
[ @sheepsteak ] : https://github.com/sheepsteak
1801
1805
[ @silviogutierrez ] : https://github.com/silviogutierrez
1802
1806
[ @SimenB ] : https://github.com/SimenB
1807
+ [ @simmo ] : https://github.com/simmo
1803
1808
[ @sindresorhus ] : https://github.com/sindresorhus
1804
1809
[ @singles ] : https://github.com/singles
1805
1810
[ @skozin ] : https://github.com/skozin
Original file line number Diff line number Diff line change @@ -79,14 +79,14 @@ Config:
79
79
80
80
<!-- tabs-->
81
81
82
- ❌ Invalid ` ["error", "prefer-inline"] `
82
+ ❌ Invalid ` ["error", { "prefer-inline": true} ] `
83
83
84
84
``` js
85
85
import { AValue , type AType } from ' ./mama-mia'
86
86
import type { BType } from ' ./mama-mia'
87
87
```
88
88
89
- ✅ Valid with ` ["error", "prefer-inline"] `
89
+ ✅ Valid with ` ["error", { "prefer-inline": true} ] `
90
90
91
91
``` js
92
92
import { AValue , type AType , type BType } from ' ./mama-mia'
You can’t perform that action at this time.
0 commit comments