1.0.4 • Published 1 month ago

@bengineer.dev/eslint-config-core v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

@bengineer.dev/eslint-config-core

npm version

My personal opinionated eslint configuration that is prone to change as quickly as the seasons do 🍂

Comes in the following flavors:

How to use

  1. Install the package and its peer dependencies
npm install -D eslint @bengineer.dev/eslint-config-core
  1. Extend this package in your ESLint configuration
{
  "extends": "@bengineer.dev/core"
}
  1. add your own flair to it 💅

Example .eslintrc.json

{
  "extends": ["@bengineer.dev/core"],
  "parser": "@typescript-eslint/parser",
  "env": {
    "jest": true
  },
  "overrides": [
    {
      "files": ["io.ts"],
      "rules": { "no-console": "off" }
    }
  ]
}