Skip to content

Commit

Permalink
chore: add lint:fix script to package.json
Browse files Browse the repository at this point in the history
Introduce a new npm script "lint:fix" for automatically fixing linting issues using ESLint. This enhances the developer workflow by allowing quick resolution of style inconsistencies.
  • Loading branch information
gabrielmaialva33 committed Feb 1, 2025
1 parent 36f0fd8 commit 464b953
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"test": "node ace test unit",
"test:e2e": "node ace test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"docker": "node ace migration:run && node ace db:seed && node bin/server.js"
Expand Down

0 comments on commit 464b953

Please sign in to comment.