An extendable ESLint config used for all projects at Alpin11.
First make sure you remove any previous eslint configs as well as eslint itself.
Install our lint config with npm or yarn:
yarn add -D @alpin11/eslint-config
or
npm i --save-dev @alpin11/eslint-config
After installation, create a .eslintrc
in your project root and add the following contents
{
"extends": [
"@alpin11",
]
}
The config can easily be extended or overridden by adding your rules to the rules
section of your .eslintrc
.
- Uses pnpm as package manager
- Uses
eslint-config-standard-with-typescript@^34.0.0
Heavily based on JohnDeved's ESLint Config which is in turn based on Standard JS and Standard with Typescript