@happytiptoe/eslint-config
v0.0.5
Published
Custom, opinionated ESLint Configuration
Downloads
3
Readme
@happytiptoe/eslint-config
Custom, opinionated ESLint Configuration
Installation
Install with your favourite package manager:
# yarn
yarn add @happytiptoe/eslint-config
# pnpm
pnpm add @happytiptoe/eslint-config
# npm
npm install @happytiptoe/eslint-config
Add to your ESLint config:
// ESM
export default {
root: true,
extends: ['@happytiptoe/eslint-config']
}
// CJS
module.exports = {
root: true,
extends: ['@happytiptoe/eslint-config']
}