lint
/
0.2.26
lint 0.2.26
Install from the command line:
Learn more about npm packages
$ npm install @elevantiq/lint@0.2.26
Install via package.json:
"@elevantiq/lint": "0.2.26"
About this version
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 @alpin11/lint
or
npm i @alpin11/lint
After installation, create a .eslintrc
in your project root and add the following contents
{
"extends": [
"./node_modules/@alpin11/lint/.eslintrc",
]
}
The config can easily be extended or overridden by adding your rules to the rules
section of your .eslintrc
.
Heavily based on JohnDeved's ESLint Config which is in turn based on Standard JS and Standard with Typescript