Skip to content

Commit

Permalink
Improve docs (#2497)
Browse files Browse the repository at this point in the history
  • Loading branch information
FloEdelmann authored Jul 4, 2024
1 parent c64bf94 commit f5cb93d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
11 changes: 7 additions & 4 deletions docs/.vitepress/build-system/src/eslint.mjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
// @ts-nocheck
import * as all from '../../../../node_modules/eslint/lib/linter/linter.js'
const Linter = all.Linter
export { Linter }
export default { Linter }
/* eslint-disable unicorn/prefer-export-from -- exporting as named and default is less duplication without `export…from` */

import { Linter } from '../../../../node_modules/eslint/lib/linter/linter.js'
import SourceCode from '../../../../node_modules/eslint/lib/source-code/source-code.js'

export { Linter, SourceCode }
export default { Linter, SourceCode }
4 changes: 0 additions & 4 deletions docs/user-guide/index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
---
outline: deep
---

# User Guide

## :cd: Installation
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-plugin": "~6.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsonc": "^2.13.0",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-node-dependencies": "^0.12.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^54.0.0",
Expand Down

0 comments on commit f5cb93d

Please sign in to comment.