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 - } -}