We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a0319a commit ac12738Copy full SHA for ac12738
packages/lint-staged-config/src/groups/eslint/index.ts
@@ -22,7 +22,7 @@ if (!global.hasAnolilabLintStagedMarkdownCli && !global.hasAnolilabLintStagedMar
22
const group: Config = {
23
[`**/*.{${["json", "json5", "jsonc"].join(",")}}`]: async (filenames: string[]) => [...(await createEslintCommands(filenames))],
24
[`**/*.{${[extensions].join(",")}}`]: async (filenames: string[]) => [
25
- `${getPackageManager()} execprettier --write ${concatFiles(filenames)}`,
+ `${getPackageManager()} exec prettier --write ${concatFiles(filenames)}`,
26
...(await createEslintCommands(filenames)),
27
],
28
};
0 commit comments