@bryanrsmith/eslint-config-standard

My standard eslint config

Usage no npm install needed!

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

README

eslint-config-standard

This is the standard eslint config that I use for personal projects.

npm install --save-dev @bryanrsmith/eslint-config-standard

example .eslintrc:

{
    "extends": "@bryanrsmith/eslint-config-standard",
    "parser": "babel-eslint",
    "env": {
        "es6": true,
        "node": true
    },
    "ecmaFeatures": {
        "modules": true,
        "experimentalObjectRestSpread": true
    }
}