Skip to content

Commit

Permalink
use -n 1000 instead
Browse files Browse the repository at this point in the history
  • Loading branch information
frosty00 committed Dec 29, 2022
1 parent 6a39a08 commit e2ad439
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/fastflake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# saves time over the other running flake8 on all the files

echo -e '\n checking syntax using flake8 over the following files:\n'
git diff --name-only --relative origin/master | sed -n '/py$/p' | tee /dev/stderr | xargs -L 0 flake8 --ignore=F722,F841,F821,W504,E402,E501,E275,E902 --exclude static_dependencies,node_modules,.tox
git diff --name-only --relative origin/master | sed -n '/py$/p' | tee /dev/stderr | xargs -n 1000 flake8 --ignore=F722,F841,F821,W504,E402,E501,E275,E902 --exclude static_dependencies,node_modules,.tox

0 comments on commit e2ad439

Please sign in to comment.