1.8.0 • Published 1 year ago

@godismyjudgebro/eslint-config v1.8.0

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

@godismyjudgebro/eslint-config

Daniel’s preferred configuration for ESLint. It supports both JavaScript and TypeScript. When you install this package, the required packages, including ESLint itself, will be automatically installed. It extends the JavaScript Standard configuration.

Installation

  1. Install the package (@godismyjudgebro/eslint-config):
    npm i -D @godismyjudgebro/eslint-config
  2. Add the following to your package.json:
    "eslintConfig": {
      "extends": "@godismyjudgebro/eslint-config"
    }
  3. Optionally, add the following to your package.json to lint TypeScript files:
    "scripts": {
      "lint:ts": "eslint '**/*.ts'"
    }