mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
21 lines
426 B
Bash
Executable File
21 lines
426 B
Bash
Executable File
#!/bin/bash
|
|
|
|
autopep8 -i -r -a -a .
|
|
if [[ -n "$(git status -s)" ]]; then
|
|
echo "autopep8 yielded the following changes:"
|
|
git status -s
|
|
git --no-pager diff
|
|
exit 1
|
|
fi
|
|
|
|
autoflake -i -r --remove-all-unused-imports --remove-unused-variables .
|
|
if [[ -n "$(git status -s)" ]]; then
|
|
echo "autoflake yielded the following changes:"
|
|
git status -s
|
|
git --no-pager diff
|
|
exit 1
|
|
fi
|
|
|
|
echo "Coding style seems to be ok."
|
|
exit 0
|