Files
web/packages/booking-flow/lint-staged.config.mjs
Joakim Jäderberg 80c3327419 Merged in fix/linting (pull request #2708)
Fix/linting

* fix import issues and add lint check no-extraneous-dependencies
* fix use type HotelType instead of string

Approved-by: Anton Gunnarsson
2025-08-27 09:22:37 +00:00

11 lines
195 B
JavaScript

const config = {
"*.{ts,tsx}": [
() => "yarn lint",
() => "tsc -p tsconfig.json --noEmit",
"prettier --write",
],
"*.{js,cjs,mjs}": "prettier --write",
}
export default config