Skip to content

Commit

Permalink
Add separate lint and lint:fix scripts
Browse files Browse the repository at this point in the history
A new script 'lint:fix' has been created for linting and auto-fixing, while the existing 'lint' script will now only perform linting checks. This separation allows for clearer understanding and more control over the linting process.
  • Loading branch information
anthony.bellancourt committed Jul 1, 2024
1 parent 4e7cbb2 commit d61bf8d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest",
"lint": "eslint src --fix",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"release": "dotenv release-it --"
},
"devDependencies": {
Expand Down

0 comments on commit d61bf8d

Please sign in to comment.