A rule set of hyeon's ESLint configurations
Installation
bun install --save-dev @hyeon/eslint-config
npm install --save-dev @hyeon/eslint-config
yarn add --save-dev @hyeon/eslint-config
pnpm add --save-dev @hyeon/eslint-config
Usage
import hyeonEslintConfigRecommended from '@hyeon/eslint-config/recommended'
import hyeonEslintConfigReact from '@hyeon/eslint-config/react'
import hyeonEslintConfigPrettier from '@hyeon/eslint-config/prettier'
export default [
...hyeonEslintConfigRecommended,
...hyeonEslintConfigReact,
...hyeonEslintConfigPrettier,
]
import hyeonEslintConfig from '@hyeon/eslint-config'
export default [
...hyeonEslintConfig.recommended,
...hyeonEslintConfig.react,
...hyeonEslintConfig.prettier,
]
import hyeonEslintConfigRecommended from '@hyeon/eslint-config/recommended'
import hyeonEslintConfigTypescript from '@hyeon/eslint-config/typescript'
import hyeonEslintConfigPrettier from '@hyeon/eslint-config/prettier'
export default [
...hyeonEslintConfigRecommended,
...hyeonEslintConfigTypescript,
...hyeonEslintConfigPrettier,
]
import hyeonEslintConfig from '@hyeon/eslint-config'
export default [
...hyeonEslintConfig.recommended,
...hyeonEslintConfig.typescript,
...hyeonEslintConfig.prettier,
]