6.0.0 • Published 1 month ago

@strv/eslint-config-typescript v6.0.0

Weekly downloads
1,012
License
BSD-3-Clause
Repository
github
Last release
1 month ago

@strv/eslint-config-typescript

Configuration for TypeScript projects.

Installation

npm install -D @strv/eslint-config-typescript

Rulesets

  • '@strv/eslint-config-typescript': A generic ruleset that focuses on code correctness
  • '@strv/eslint-config-typescript/optional': Addiitonal ruleset that might provide useful tips and hints how to improve your code
  • '@strv/eslint-config-typescript/style': Ruleset that focuses solely on code style (indentation, spacing, naming, syntax preference etc.)
  • '@strv/eslint-config-typescript/react': Ruleset that provides additional customisations for the @strv/eslint-config-react ruleset when working with TypeScript`

Usage

// eslint.config.mjs
import typescript from '@strv/eslint-config-typescript'
import optional from '@strv/eslint-config-typescript/optional'
import style from '@strv/eslint-config-typescript/style'
// Just to help us re-use the same globs multiple times
const globs = {
  js: '**/*.js',
}

/** @type {Array<import("eslint").Linter.FlatConfig>} */
const config = [
  { files: [globs.js], ...typescript },
  { files: [globs.js], ...optional },
  { files: [globs.js], ...style },
  // Any custom settings to be applied
  { files: [globs.js],
    languageOptions: { ecmaVersion: 2023 }
  },
]

export default config

License

See the LICENSE file for information.

6.0.0-alpha.3

1 month ago

6.0.0-alpha.4

1 month ago

6.0.0

1 month ago

6.0.0-alpha.0

5 months ago

6.0.0-alpha.1

5 months ago

6.0.0-alpha.2

5 months ago

5.0.0

1 year ago

4.1.0

2 years ago

4.0.0

2 years ago

4.1.2

2 years ago

4.1.1

2 years ago

3.2.0

3 years ago

3.1.2

3 years ago

3.1.1

3 years ago

3.1.0

3 years ago

3.0.0-alpha.9

4 years ago

3.0.0

4 years ago

3.0.0-alpha.8

4 years ago

3.0.0-alpha.7

4 years ago

3.0.0-alpha.6

4 years ago

3.0.0-alpha.5

4 years ago

3.0.0-alpha.4

5 years ago

3.0.0-alpha.3

5 years ago

3.0.0-alpha.1

5 years ago

3.0.0-alpha.0

5 years ago

3.0.0-alpha.2

5 years ago

2.3.0

5 years ago

2.2.1

5 years ago

2.2.0

5 years ago

2.1.4

5 years ago

2.1.5

5 years ago

2.1.3

6 years ago

2.1.2

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.1.1-alpha.0

6 years ago