@wkovacs64/eslint-config
This is my personal ESLint configuration.
![changesets](https://img.shields.io/badge/maintained%20with-changesets-blue?style=flat-square)
Install
npm install --save-dev @wkovacs64/eslint-config
Be sure to install the appropriately versioned eslint
peer dependency as well.
Usage
Follow the ESLint documentation on shared configurations. See the documentation on
ignoring files if you need to ignore anything the config doesn't already ignore by
default.
Examples
eslint.config.js
import baseConfig from '@wkovacs64/eslint-config';
const config = [
...baseConfig,
];
export default config;
package.json
{
"scripts": {
...
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
...
}
}