eslint-config-omichelsen
v2.0.0
Published
My shared eslint and prettier config for personal projects
Readme
eslint-config-omichelsen
My shared eslint and prettier config for personal projects.
Install
pnpm add -D eslint-config-omichelsenAdd the config to your eslint.config.js:
import omichelsen from 'eslint-config-omichelsen'
export default omichelsenFor prettier plugins in VS Code you might have to add the following to your package.json:
{
"prettier": "eslint-config-omichelsen/.prettierrc.js"
}Usage
To run add the following to your package.json:
{
"scripts": {
"lint": "eslint src"
}
}