A strict eslint configuration extending the recommendations from eslint, react, import, and jsx-a11y. Adds a suite of overrides that will spice
up your IDE and help you write and publish better code.
You'll first need to install ESLint:
# npm
npm install eslint --save-dev
# yarn
yarn add -D eslint
Next, install eslint-config-kevbost
:
# npm
npm install eslint-config-kevbost --save-dev
# yarn
yarn add -D eslint-config-kevbost
{
"extends": [
"eslint-config-kevbost"
]
}