eslint-config-pythoncoderas-typescript
v2.2.1
Published
My reusable eslint config for typescript projects.
Downloads
31
Readme
eslint-config-pythoncoderas-typescript
My reusable eslint config for typescript projects.
Note: This is most likely not what you want to use. Use eslint-config-pythoncoderas-combo
instead.
Installation
First, install the package via npm install --save-dev eslint-config-pythoncoderas-typescript
.
Then, in your .eslintrc file, add the following line:
{
"extends": [
"pythoncoderas-typescript"
]
}
Compatibility with eslint-config-pythoncoderas
In order to get prettier rules to apply, eslint-config-pythoncoderas
needs to be extended after
eslint-config-pythoncoderas-typescript
. An example .eslintrc file would look like this:
{
"extends": [
"pythoncoderas-typescript",
"pythoncoderas"
]
}