fix: fix eslint issues when you run lint:fix command

This commit is contained in:
Arnau Gómez Farell 2025-05-19 15:19:50 +02:00
parent 2ea0475518
commit 4c03acf68a
No known key found for this signature in database
2 changed files with 13 additions and 1 deletions

12
.prettierignore Normal file
View File

@ -0,0 +1,12 @@
**/.git
**/.svn
**/.hg
**/node_modules
.turbo
.changeset
.github/**/*
demos/dist/**/*
demos/node_modules/**/*
pnpm-lock.yaml

View File

@ -14,7 +14,7 @@
"start": "pnpm --prefix ./demos run start", "start": "pnpm --prefix ./demos run start",
"dev": "pnpm run start", "dev": "pnpm run start",
"lint": "turbo run lint", "lint": "turbo run lint",
"lint:fix": "prettier . --write && eslint --fix --cache --quiet --no-error-on-unmatched-pattern ./", "lint:fix": "prettier -w --log-level warn . && eslint --fix --cache --quiet --no-error-on-unmatched-pattern .",
"lint:staged": "lint-staged", "lint:staged": "lint-staged",
"test:open": "cypress open --project tests", "test:open": "cypress open --project tests",
"test:run": "cypress run --project tests", "test:run": "cypress run --project tests",