1.0.1 • Published 5 months ago

@combeenation/eslint-config v1.0.1

Weekly downloads
-
License
Apache 2.0
Repository
github
Last release
5 months ago

@combeenation/eslint-config

Combeenation ESLint base config for use in TS projects as well as JS projects using prettier.

Usage

  • Install:

    $ npm i --save-dev @combeenation/eslint-config
  • Create new eslint config or add to extends section of existing eslint config. Example empty config using the package:

    {
      "extends": ["@combeenation/eslint-config"],
      // The config does not set any kind of env...
      "env": {
        "browser": true,
        "es2021": true
      },
      "rules": {
        // Overwrite rules if needed...
      }
    }

Sub dependencies

The config extends eslint:recommended & @typescript-eslint/eslint-recommended which don't need to be installed explicitly.