Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@ Add the following to your `.eslintrc` config:

```CJSON
{
"parser": "typescript-eslint-parser",
"plugins": ["import"],
"rules": {
// turn on errors for missing imports
"import/no-unresolved": "error"
},
"settings": {
"import/parsers": {
"typescript-eslint-parser": [".ts", ".tsx"]
},
"import/resolver": {
// use <root>/tsconfig.json
"typescript": {},
Expand All @@ -41,6 +43,7 @@ Add the following to your `.eslintrc` config:
}
```


## Contributing

- Make sure your change is covered by a test import.
Expand Down