Skip to content

Commit

Permalink
chore: fix lint command
Browse files Browse the repository at this point in the history
  • Loading branch information
fand committed Jun 25, 2024
1 parent 678ecfd commit 886006d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vfx-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
],
"license": "MIT",
"lint-staged": {
"src/*.{ts,tsx}": [
"src/*.ts": [
"eslint --fix",
"prettier --write"
]
Expand All @@ -59,7 +59,7 @@
"dev": "run-p watch:cjs watch:esm",
"watch:cjs": "tsc -d -w",
"watch:esm": "tsc -d -w -p tsconfig.esm.json",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"lint": "eslint src/**/*.ts",
"lint-staged": "lint-staged",
"test": "vitest --dir src --run",
"test:watch": "vitest --dir src"
Expand Down

0 comments on commit 886006d

Please sign in to comment.