Skip to content

Commit

Permalink
remove lint from test script
Browse files Browse the repository at this point in the history
  • Loading branch information
gurgunday committed Jul 27, 2023
1 parent ef412af commit 199e06c
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,14 @@
"typescript": "^5.1.6"
},
"scripts": {
"coverage": "npm run unit -- --cov",
"coverage-report": "npm run coverage -- --coverage-report=lcov",
"coverage": "npm run test:unit -- --coverage-report=html",
"lint": "standard",
"lint:fix": "npm run lint -- --fix",
"lint:typescript": "npm run lint:fix -- --parser @typescript-eslint/parser --plugin typescript test/types/*.ts",
"lint:types": "npm run lint:fix -- --parser @typescript-eslint/parser --plugin typescript *.d.ts",
"test": "npm run lint && npm run unit && npm run test:typescript",
"lint:fix:types": "npm run lint:fix -- --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin \"**/*.d.ts\"",
"test": "npm run test:unit && npm run test:typescript",
"test:typescript": "tsd",
"unit": "tap -J test/*.test.js",
"unit:report": "npm run unit -- --cov --coverage-report=html",
"unit:verbose": "npm run unit -- -Rspec"
"test:unit": "tap \"test/**/*.test.js\"",
"test:unit:verbose": "npm run test:unit -- -Rspec"
},
"keywords": [
"fastify",
Expand Down

0 comments on commit 199e06c

Please sign in to comment.