@aerian/eslint-config-node

Aerian Studios' opinionated node formatting and best practices

Usage no npm install needed!

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

README

@aerian/eslint-config-node

This is a sharable ESLint config for node. If you're using TypeScript, add @aerian/eslint-config-typescript too.

If you're using Preact, try @aerian/eslint-config-preact

To install, run:

#npm
npm i -D eslint prettier @aerian/eslint-config-react

#yarn
yarn add -D  eslint prettier @aerian/eslint-config-react

To use it, create the following .eslintrc.json:

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

..or if you're using TypeScript:

{
    "extends": [
        "@aerian/eslint-config-node",
        "@aerian/eslint-config-typescript"
    ]
}

The base formatting uses Prettier, which parses and reformats your code. It runs this through ESLint, so you can run use eslint . --fix to apply Prettier formatting as well as ESLint rules.