We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5538725 commit 9a8b98bCopy full SHA for 9a8b98b
knip.jsonc
@@ -7,7 +7,7 @@
7
"src/migrate/index.ts",
8
"script/*e2e.js"
9
],
10
- "ignoreBinaries": ["gh"],
+ "ignoreBinaries": ["chmod", "gh"],
11
"ignoreExportsUsedInFile": {
12
"interface": true,
13
"type": true
src/steps/writing/writeStructure.ts
@@ -1,7 +1,12 @@
1
+import { $ } from "execa";
2
+
3
import { Options } from "../../shared/types.js";
4
import { createStructure } from "./creation/index.js";
5
import { writeStructureWorker } from "./writeStructureWorker.js";
6
export async function writeStructure(options: Options) {
await writeStructureWorker(await createStructure(options), ".");
+ // https://github.com/JoshuaKGoldberg/template-typescript-node-package/issues/718
+ await $`chmod ug+x .husky/pre-commit`;
}
0 commit comments