@homestuck/eslint-config
v1.6.0
Published
Baseline ESLint configs used and maintained by Homestuck Inc., et al.
Readme
Baseline ESLint configurations used and maintained by members of @homestuck.
🚀 Quick Start
1. Install the package:
npm install --save-dev @homestuck/eslint-config
# or
pnpm add -D @homestuck/eslint-config2. Add the most applicable config to your project's ESLint configuration file:
Javascript/Typescript:
import baseConfig from '@homestuck/eslint-config'
const config = [
...baseConfig,
// Additional configs can optionally be set here.
]
export default configReact:
import reactConfig from '@homestuck/eslint-config/react'
const config = [
...reactConfig,
// Additional configs can optionally be set here.
]
export default configNextJS:
import nextConfig from '@homestuck/eslint-config/next'
const config = [
...nextConfig,
// Additional configs can optionally be set here.
]
export default config