Skip to content

Commit

Permalink
Remove ESLint import plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
arturmuller committed Mar 11, 2024
1 parent 75cc57a commit 10e402c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 26 deletions.
26 changes: 1 addition & 25 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"extends": [
"plugin:import/typescript",
"prettier",
"prettier/@typescript-eslint"
],
"plugins": ["@typescript-eslint", "import", "prettier"],
"plugins": ["@typescript-eslint", "prettier"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
Expand All @@ -19,14 +18,6 @@
"mocha": true,
"node": true
},
"settings": {
"import/extensions": [".js", ".ts"],
"import/resolver": {
"typescript": {
"project": ["./tsconfig.json"]
}
}
},
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
Expand All @@ -35,21 +26,6 @@
"constructor-super": "error",
"dot-notation": ["error", { "allowKeywords": true }],
"eqeqeq": ["error", "smart"],
"import/default": "error",
"import/export": "error",
"import/first": "error",
"import/named": "error",
"import/namespace": "error",
"import/newline-after-import": "error",
"import/no-deprecated": "error",
"import/no-extraneous-dependencies": [
"error",
{ "peerDependencies": true }
],
"import/no-mutable-exports": "error",
"import/no-named-as-default": "error",
"import/no-named-as-default-member": "error",
"import/no-unresolved": "error",
"linebreak-style": "error",
"new-parens": "error",
"no-array-constructor": "error",
Expand Down
1 change: 0 additions & 1 deletion test/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { basename, extname, resolve } from 'path'
import {
any,
assert as assertValue,
// eslint-disable-next-line import/named
Context,
create as createValue,
deprecated,
Expand Down

0 comments on commit 10e402c

Please sign in to comment.