Opinionated eslint set of rules with support for Vue and Typescript.
Install dependencies.
pnpm add -D eslint @clickbar/eslint-config
Add the scripts to your package.json
scripts
:
"scripts": {
"fix": "pnpm lint --fix",
"lint": "eslint .",
},
Edit eslint.config.js
:
/* eslint-env node */
import clickbar from '@clickbar/eslint-config'
export default clickbar()
Add the following to your settings.json
:
MIT