eslint config for Brandung GmbH & Co KG
npm install @brandung/eslint-config-brandungThis eslint config heavily relies on eslint-config-airbnb.
Install using npm or yarn:
``bash`
yarn add -D @brandung/eslint-config-brandung
or
`bash`
npm i -D @brandung/eslint-config-brandung
Add the following to a file called .eslintconfig.json
`json`
{
"extends": ["@brandung/eslint-config-brandung"]
}
Add changes to the existing behavior to your .eslintconfig.json like so:
`json``
{
"extends": ["@brandung/eslint-config-brandung"],
"rules": {
"semi": ["error", "always"]
}
}