2023-12-13 17:19:43 +08:00
|
|
|
# ESLint Config for Hono projects
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
```bash
|
|
|
|
npm install @hono/eslint-config
|
|
|
|
# or
|
|
|
|
yarn add @hono/eslint-config
|
|
|
|
```
|
|
|
|
|
|
|
|
## Setting
|
|
|
|
|
2024-09-08 11:59:41 +08:00
|
|
|
`eslint.config.mjs`
|
2023-12-13 17:19:43 +08:00
|
|
|
|
|
|
|
```js
|
2024-09-08 11:59:41 +08:00
|
|
|
import baseConfig from '@hono/eslint-config'
|
|
|
|
|
|
|
|
export default [...baseConfig]
|
2023-12-13 17:19:43 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
## Authors
|
|
|
|
|
|
|
|
- Yusuke Wada <https://github.com/yusukebe>
|
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
MIT
|