Files
web/packages/common/lint-staged.config.js
Joakim Jäderberg bc5a606289 Merged in feature/turbopack (pull request #3117)
Feature/turbopack

* .

* .

* pin import-in-the-middle

* update marker

* revert back to using *.graphql.ts


Approved-by: Linus Flood
2025-11-11 09:51:40 +00:00

12 lines
228 B
JavaScript

const config = {
"*.{ts,tsx}": [
() => "yarn lint",
() => "yarn check-types",
"prettier --write",
],
"*.{json,md}": "prettier --write",
"*.{html,js,cjs,mjs,css}": "prettier --write",
}
export default config