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 4fbe406 commit 08f988eCopy full SHA for 08f988e
check_coding_style.sh
@@ -5,15 +5,15 @@ if [[ -n "$(git status -s)" ]]; then
5
echo "autopep8 yielded the following changes:"
6
git status -s
7
git --no-pager diff
8
- exit 1
+ exit 0 # don't be so strict about coding style errors
9
fi
10
11
autoflake -i -r --remove-all-unused-imports --remove-unused-variables .
12
if [[ -n "$(git status -s)" ]]; then
13
echo "autoflake yielded the following changes:"
14
15
16
17
18
19
echo "Coding style seems to be ok."
setup.cfg
@@ -4,6 +4,5 @@ max-complexity = 15
4
[pep8]
max-line-length = 80
-max-complexity = 15
exclude = */contrib/*
ignore = E251,E309
0 commit comments