File tree 3 files changed +8
-9
lines changed
.vitepress/build-system/src
3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change 1
1
// @ts -nocheck
2
- import * as all from '../../../../node_modules/eslint/lib/linter/linter.js'
3
- const Linter = all . Linter
4
- export { Linter }
5
- export default { Linter }
2
+ /* eslint-disable unicorn/prefer-export-from -- exporting as named and default is less duplication without `export…from` */
3
+
4
+ import { Linter } from '../../../../node_modules/eslint/lib/linter/linter.js'
5
+ import SourceCode from '../../../../node_modules/eslint/lib/source-code/source-code.js'
6
+
7
+ export { Linter , SourceCode }
8
+ export default { Linter, SourceCode }
Original file line number Diff line number Diff line change 1
- ---
2
- outline : deep
3
- ---
4
-
5
1
# User Guide
6
2
7
3
## :cd : Installation
Original file line number Diff line number Diff line change 82
82
"eslint-config-prettier" : " ^9.1.0" ,
83
83
"eslint-plugin-eslint-plugin" : " ~6.1.0" ,
84
84
"eslint-plugin-import" : " ^2.29.1" ,
85
- "eslint-plugin-jsonc" : " ^2.13 .0" ,
85
+ "eslint-plugin-jsonc" : " ^2.16 .0" ,
86
86
"eslint-plugin-node-dependencies" : " ^0.12.0" ,
87
87
"eslint-plugin-prettier" : " ^5.1.3" ,
88
88
"eslint-plugin-unicorn" : " ^54.0.0" ,
You can’t perform that action at this time.
0 commit comments