We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ce8f5d commit 49ee3c2Copy full SHA for 49ee3c2
src/index.ts
@@ -23,7 +23,8 @@ export default (api: IApi) => {
23
const isInstalled = await checkNpmPackageInstalled('eslint');
24
if (isInstalled) {
25
execSync(
26
- `npx eslint ${inputFolder} --ext .tsx,.ts --rule '@typescript-eslint/consistent-type-exports: error'`,
+ // Requires compatibility with Windows environment
27
+ `npx eslint ${inputFolder} --ext .tsx,.ts --rule "@typescript-eslint/consistent-type-exports: error"`,
28
{
29
cwd: process.cwd(),
30
env: process.env,
0 commit comments