Skip to content
This repository was archived by the owner on Oct 19, 2022. It is now read-only.

Commit 75ec810

Browse files
author
Dominik Rowicki
committed
Fix linters not working because of globbing issue with bash
1 parent bf4e73e commit 75ec810

File tree

1 file changed

+2
-2
lines changed
  • packages/react-scripts/scripts

1 file changed

+2
-2
lines changed

packages/react-scripts/scripts/init.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ module.exports = function(
4343
build: 'react-scripts build',
4444
test: 'react-scripts test --env=jsdom',
4545
eject: 'react-scripts eject',
46-
stylelint: 'stylelint src/**/*.scss',
47-
eslint: 'eslint src/**/*.js',
46+
stylelint: 'stylelint "src/**/*.scss"',
47+
eslint: 'eslint "src/**/*.js"',
4848
};
4949

5050
fs.writeFileSync(

0 commit comments

Comments
 (0)