From abb9b297a0124fff2cc0ed1e14129731464bd6d4 Mon Sep 17 00:00:00 2001 From: uzlopak Date: Tue, 9 May 2023 10:17:48 +0200 Subject: [PATCH] use standard instead of ts-standard --- package.json | 5 +++-- tsconfig.eslint.json | 6 ------ 2 files changed, 3 insertions(+), 8 deletions(-) delete mode 100644 tsconfig.eslint.json diff --git a/package.json b/package.json index 6c94de7..a9e8e08 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,8 @@ "main": "index.js", "types": "types/index.d.ts", "scripts": { - "lint": "ts-standard", + "lint": "standard", + "lint:fix": "standard --fix", "test": "npm run test:unit && npm run test:typescript", "test:unit": "tap", "test:typescript": "tsd" @@ -28,8 +29,8 @@ "homepage": "https://github.com/fastify/fastify-error#readme", "devDependencies": { "benchmark": "^2.1.4", + "standard": "^17.0.0", "tap": "^16.0.0", - "ts-standard": "^12.0.2", "tsd": "^0.28.0" }, "tsd": { diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json deleted file mode 100644 index 1c10b8a..0000000 --- a/tsconfig.eslint.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "compilerOptions": { - "strict": true, - "noImplicitAny": true - } -}