Skip to content

tclindner/eslint-config-typescript-tc

Repository files navigation

eslint-config-typescript-tc

ESLint shareable config for TypeScript projects

license npm ci Dependency Status devDependency Status

What is eslint-config-typescript-tc?

Shared configuration for ESLint. Follow the instructions below to easily include this configuration in another project without having to duplicate the file!

How do I install it?

First thing first, let's make sure you have the necessary pre-requisites.

System Dependencies

Node

Command

npx install-peerdeps --dev eslint-config-typescript-tc

@typescript-eslint/parser and eslint-config-prettier are peer dependencies and must be installed.

This module works best when paired with eslint-config-tc. Please follow its install instructions.

Usage

Add the following to your .eslintrc.json file:

{
	"extends": "eslint-config-typescript-tc"
}

If you need to override a rule, your .eslintrc.json file should look like the example below. All shared rules will be used, but @typescript-eslint/array-type will be turned off.

{
	"extends": "eslint-config-typescript-tc",
	"rules": {
		"@typescript-eslint/array-type": "off"
	}
}

Related

Contributing

Please see the CONTRIBUTING.md file for more information.

Change Log

Please see the CHANGELOG.md for more information.

License

Copyright (c) 2020-2022 Thomas Lindner. Licensed under the MIT license.