1.4.6-alpha.0 • Published 2 years ago

@dcrtit/eslint-config-base v1.4.6-alpha.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@dcrtit/eslint-config-base

Basic ESLint config with primary Javascript rules.

Installation

npm i eslint @typescript-eslint/parser @dcrtit/eslint-config-base -D

Usage

In your .eslintrc.js or whatsoever config file just simple extend your existing configuration with provided package:

module.exports = {
  extends: [
    // ...Other configs
    '@dcrtit/eslint-config-base'
  ],
  rules: [
    // Your own rules' overrides, if needed
  ]
}