@brandung/eslint-config-brandung

eslint config for Brandung GmbH & Co KG

Usage no npm install needed!

<script type="module">
  import brandungEslintConfigBrandung from 'https://cdn.skypack.dev/@brandung/eslint-config-brandung';
</script>

README

eslint-config-brandung

This eslint config heavily relies on eslint-config-airbnb.

Usage

Install using npm or yarn:

yarn add -D @brandung/eslint-config-brandung

or

npm i -D @brandung/eslint-config-brandung

Add the following to a file called .eslintconfig.json

{
  "extends": ["@brandung/eslint-config-brandung"]
}

Changing rules

Add changes to the existing behavior to your .eslintconfig.json like so:

{
  "extends": ["@brandung/eslint-config-brandung"],
  "rules": {
    "semi": ["error", "always"]
  }
}