packages: add lint:fix

This commit is contained in:
vchikalkin 2023-08-01 14:16:56 +03:00
parent 56257e53ee
commit 0117a4fd58
2 changed files with 4 additions and 2 deletions

View File

@ -18,7 +18,8 @@
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
"test:e2e": "jest --config ./test/jest-e2e.json",
"lint:fix": "eslint --fix"
},
"dependencies": {
"@fastify/cookie": "^8.0.0",

View File

@ -6,7 +6,8 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
"lint": "next lint",
"lint:fix": "next lint -- --fix"
},
"dependencies": {
"@fontsource/montserrat": "^4.5.13",