From 289e32f94b518eb555c075c65531871b1968ca07 Mon Sep 17 00:00:00 2001 From: Karl Horky Date: Thu, 28 Oct 2021 22:17:45 +0200 Subject: [PATCH] Switch tsdx lint to eslint Ref https://github.com/jaredpalmer/tsdx/issues/905#issuecomment-710241452 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index c3fa7a9..a5bec61 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "build": "tsdx build --format esm --target node", "test": "tsdx test", "test-local": "rm -rf ./__tests__/fixtures/__temp && yarn test", - "lint": "tsdx lint src __tests__ --max-warnings 0", + "lint": "eslint . --max-warnings 0", "prepare": "yarn build", "size": "size-limit", "analyze": "size-limit --why",