Skip to content

Commit 10e402c

Browse files
committed
Remove ESLint import plugins
1 parent 75cc57a commit 10e402c

File tree

2 files changed

+1
-26
lines changed

2 files changed

+1
-26
lines changed

.eslintrc

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"extends": [
3-
"plugin:import/typescript",
43
"prettier",
54
"prettier/@typescript-eslint"
65
],
7-
"plugins": ["@typescript-eslint", "import", "prettier"],
6+
"plugins": ["@typescript-eslint", "prettier"],
87
"parser": "@typescript-eslint/parser",
98
"parserOptions": {
109
"sourceType": "module",
@@ -19,14 +18,6 @@
1918
"mocha": true,
2019
"node": true
2120
},
22-
"settings": {
23-
"import/extensions": [".js", ".ts"],
24-
"import/resolver": {
25-
"typescript": {
26-
"project": ["./tsconfig.json"]
27-
}
28-
}
29-
},
3021
"rules": {
3122
"@typescript-eslint/no-unused-vars": [
3223
"error",
@@ -35,21 +26,6 @@
3526
"constructor-super": "error",
3627
"dot-notation": ["error", { "allowKeywords": true }],
3728
"eqeqeq": ["error", "smart"],
38-
"import/default": "error",
39-
"import/export": "error",
40-
"import/first": "error",
41-
"import/named": "error",
42-
"import/namespace": "error",
43-
"import/newline-after-import": "error",
44-
"import/no-deprecated": "error",
45-
"import/no-extraneous-dependencies": [
46-
"error",
47-
{ "peerDependencies": true }
48-
],
49-
"import/no-mutable-exports": "error",
50-
"import/no-named-as-default": "error",
51-
"import/no-named-as-default-member": "error",
52-
"import/no-unresolved": "error",
5329
"linebreak-style": "error",
5430
"new-parens": "error",
5531
"no-array-constructor": "error",

test/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import { basename, extname, resolve } from 'path'
55
import {
66
any,
77
assert as assertValue,
8-
// eslint-disable-next-line import/named
98
Context,
109
create as createValue,
1110
deprecated,

0 commit comments

Comments
 (0)