From d46c8852aa593e2a4fd5bd8c84c270e195ffb1cf Mon Sep 17 00:00:00 2001 From: Alexandre Daubricourt Date: Sat, 21 Sep 2024 14:24:30 +0200 Subject: [PATCH] chore: custom eslint config for test project --- eslint.config.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/eslint.config.js b/eslint.config.js index 796169e..8ac009d 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,7 +1,6 @@ // @ts-check import tseslint from "typescript-eslint"; -import { plugin as ex } from "./dist/index.mjs"; const ignores = [ "node_modules", @@ -19,7 +18,6 @@ const ignores = [ export default tseslint.config( ...tseslint.configs.recommended.map((x) => ({ ...x, ignores })), { - plugins: { ex }, languageOptions: { parserOptions: { parser: "@typescript-eslint/parser", @@ -30,9 +28,6 @@ export default tseslint.config( files: ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"], ignores, rules: { - "ex/no-unhandled": "error", - "ex/might-throw": "warn", - "ex/use-error-cause": "warn", "@typescript-eslint/no-unused-vars": [ "error", { argsIgnorePattern: "_" },