@mntm/eslint-config
v2.2.0
Published
ESLint config with TypeScript support
Maintainers
Readme
@mntm/eslint-config 
ESLint config with TypeScript support.
Installation
We recommend to use yarn for dependency management:
yarn add -D typescript eslint @mntm/eslint-configSetup
1) Configure ESLint
Add "extends": "@mntm" to your ESLint config file.
An example .eslintrc:
{
"extends": "@mntm"
}2) Configure the ESLint TypeScript parser
This config requires knowledge of your TypeScript config.
In your ESLint config, set parserOptions.project to the path of your tsconfig.json.
For example:
{
"extends": "@mntm"
+ "parserOptions": {
+ "project": "./tsconfig.json",
+ "tsconfigRootDir": "."
+ }
}License
@mntm/eslint-config is MIT licensed.
