Skip to content

Commit 68e560a

Browse files
committed
remove flow in pre-commit hook
1 parent ea61d98 commit 68e560a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ If you are on a Unix-like system, optionally install the Git pre-commit hook wit
6565
$ npm run install:hooks
6666
```
6767

68-
This will run Flow and ESLint on changed files before each commit.
68+
This will run ESLint on changed files before each commit.
6969

7070
### Commonly used NPM scripts
7171

build/git-hooks/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
files_to_lint=$(git diff --cached --name-only --diff-filter=ACM | grep '\.js$')
44

55
if [ -n "$files_to_lint" ]; then
6-
flow && NODE_ENV=production eslint $files_to_lint
6+
NODE_ENV=production eslint $files_to_lint
77
fi

0 commit comments

Comments
 (0)