Add lint:fix script to auto-apply linting fixes (#529)

This commit is contained in:
Scott Merchant 2024-06-09 23:24:35 +09:30 committed by GitHub
parent 622f49c5ad
commit 053b8dbef0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -11,6 +11,7 @@
"build:mobile:dev": "yarn workspace mobile build:dev",
"update": "yarn workspace mobile update",
"lint": "biome lint .",
"lint:fix": "biome lint . --apply",
"format": "biome format .",
"format:fix": "biome format . --write"
},