"lint-staged": { "*.ts": "tsc --noEmit" } ``` **After:** ```js // .lintstagedrc.js export default { '*.ts': () => 'tsc --noEmit' } ``` Alternatively, you can run `tsc` without any arguments to have it pick up the project's `tsconfig.json`: ```js // .lintstagedrc.js export default { '*.ts': () => 'tsc' } ``` ### How can I use `lint-staged` with `pnpm`? <details> <summary>Click to expand</summary> You can use `lint-staged` with `pnpm` by installing it as a dev dependency and using `npx lint-staged` in your husky hooks. ```json { "scripts": { "prepare": "husky install" }, "devDependencies": { "husky": "^7", "lint-staged": "^13" } } ``` ```shell # .husky/pre-commit npx lint-staged ``` </details> ### How can I use `lint-staged` with `bun`? <details> <summary>Click to expand</
How the donated funds are distributed
Kivach works on the Obyte network, and therefore you can track all donations.