8.0.0 • Published 6 months ago

@trevorblades/eslint-config v8.0.0

Weekly downloads
289
License
MIT
Repository
github
Last release
6 months ago

@trevorblades/eslint-config

Build Status

This is a shared ESLint config with a few rules that I like to use. It has no dependencies, but should be used alongside ESLint and probably some other plugins.

Installation

yarn add -D eslint @trevorblades/eslint-config

Usage

Create an .eslintrc file that extends this config. For more configuration options, check out the ESLint docs.

{
  "extends": [
    "@trevorblades",
    // ...your other ESLint config extensions
  ]
}

Real life examples

Here's an example config for a project that uses React with TypeScript. It also features Prettier code formatting and import sorting.

yarn add -D eslint @trevorblades/eslint-config eslint-plugin-react eslint-plugin-react-hooks eslint-plugin-prettier eslint-config-prettier prettier eslint-plugin-simple-import-sort @typescript-eslint/eslint-plugin @typescript-eslint/parser typescript
// @ts-check

/**
 * @type {import('eslint').ESLint.ConfigData}
 */
const config = {
  env: {
    node: true,
    browser: true,
  },
  extends: [
    "@trevorblades",
    "plugin:react/recommended",
    "plugin:react-hooks/recommended",
    "plugin:@typescript-eslint/recommended",
    "plugin:prettier/recommended",
  ],
  plugins: ["simple-import-sort"],
  rules: {
    "react/prop-types": "off",
    "simple-import-sort/imports": "error",
    "simple-import-sort/exports": "error",
    "@typescript-eslint/consistent-type-imports": "error",
  },
}
8.0.0

6 months ago

7.2.8

2 years ago

7.2.6

3 years ago

7.2.7

3 years ago

7.2.5

3 years ago

7.2.4

3 years ago

7.2.3

3 years ago

7.2.2

3 years ago

7.2.1

4 years ago

7.2.0

4 years ago

7.1.0

4 years ago

7.0.2

5 years ago

7.0.1

5 years ago

7.0.0

5 years ago

7.0.0-alpha.4

5 years ago

7.0.0-alpha.3

5 years ago

7.0.0-alpha.2

5 years ago

7.0.0-alpha.1

5 years ago

7.0.0-alpha.0

5 years ago

6.22.2

5 years ago

6.22.1

5 years ago

6.22.0

5 years ago

6.21.0

5 years ago

6.20.0

5 years ago

6.19.2

5 years ago

6.19.1

5 years ago

6.19.0

5 years ago

6.18.0

6 years ago

6.17.1

6 years ago

6.17.0

6 years ago

6.16.0

6 years ago

6.15.0

6 years ago

6.14.0

6 years ago

6.13.3

6 years ago

6.13.2

6 years ago

6.13.1

6 years ago