Skip to content

Commit 555a1ec

Browse files
Renames module to eslint-import-resolver-typescript
1 parent 33e49e4 commit 555a1ec

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# eslint-plugin-import-typescript-resolver
1+
# eslint-import-resolver-typescript
22

33
This plugin allows you to use `eslint-plugin-import` with `.ts` and `.tsx` files.
44

@@ -7,7 +7,7 @@ This plugin allows you to use `eslint-plugin-import` with `.ts` and `.tsx` files
77
## Installation
88

99
```
10-
npm install --save-dev eslint-plugin-import-typescript-resolver
10+
npm install --save-dev eslint-import-resolver-typescript
1111
```
1212

1313
Add the following to your eslint config:
@@ -16,7 +16,8 @@ Add the following to your eslint config:
1616
"settings": {
1717
"import/resolver": {
1818
"node": true,
19-
"eslint-plugin-import-typescript-resolver": true
19+
"eslint-import-resolver-typescript": true
2020
}
2121
}
2222
```
23+

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
{
2-
"name": "eslint-plugin-import-typescript-resolver",
2+
"name": "eslint-import-resolver-typescript",
33
"version": "1.0.0",
44
"description": "TypeScript .ts .tsx module resolver for `eslint-plugin-import`.",
55
"main": "index.js",
66
"files": [
77
"index.js"
88
],
9+
"repository": {
10+
"type": "git",
11+
"url": "https://github.com/alexgorbatchev/eslint-import-resolver-typescript"
12+
},
913
"keywords": [
1014
"typescript",
1115
"eslint",

0 commit comments

Comments
 (0)