Fix husky/lint-staged integration (#1831)

This commit is contained in:
Carlos Fernandez 2026-04-24 14:48:42 -04:00 committed by GitHub
parent 84afec31a7
commit 4a60c56462
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 134 additions and 266 deletions

View file

@ -19,7 +19,8 @@
"createSymlink": "node ./tools/create-symlink.mjs",
"setup:dev": "node ./tools/dev-setup.mjs",
"lint": "eslint",
"lint:fix": "eslint --fix"
"lint:fix": "eslint --fix",
"prepare": "husky"
},
"devDependencies": {
"@foundryvtt/foundryvtt-cli": "^1.0.2",
@ -29,13 +30,13 @@
"eslint": "^10.2.1",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.5.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8.4.32",
"prettier": "^3.5.3",
"rollup-plugin-postcss": "^4.0.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
"**/*": "eslint --fix"
}
}