@kargotech/eslint-config-base
v0.4.1
Published
Sensible eslint configs for kargo.tech project development
Downloads
26
Readme
This is the sensible base eslint config for general javascript project at Kargo.
Usage
Installing requirements
Since our configs are extending Airbnb's, we need the following devDependencies to be imported in your project:
- eslint: ^5.16.0 || ^6.8.0 || ^7.2.0
- eslint-plugin-import: ^2.22.1
npx install-peerdeps --dev @kargotech/eslint-config-baseInstalling config
If you are using npm:
npm i -D @kargotech/eslint-config-baseIf you are using yarn:
yarn add @kargotech/eslint-config-base -DAdd this config to your eslint config:
{
"extends": "@kargotech/eslint-config-base"
}