Put max-line-length of 120 in pycodestyle config, rather than completely disabling E501.
This commit is contained in:
parent
33888fe597
commit
63265e645a
2 changed files with 4 additions and 1 deletions
|
@ -22,5 +22,5 @@ codestyle:
|
||||||
- apt-get install -y --no-install-recommends python3-dev python3-pip python3-coverage python3-setuptools build-essential
|
- apt-get install -y --no-install-recommends python3-dev python3-pip python3-coverage python3-setuptools build-essential
|
||||||
- pip3 install wheel pycodestyle mypy
|
- pip3 install wheel pycodestyle mypy
|
||||||
- pip3 install -r requirements.txt
|
- pip3 install -r requirements.txt
|
||||||
- pycodestyle --ignore=E501 matemat
|
- pycodestyle matemat
|
||||||
- mypy --ignore-missing-imports --strict -p matemat
|
- mypy --ignore-missing-imports --strict -p matemat
|
||||||
|
|
3
setup.cfg
Normal file
3
setup.cfg
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[pycodestyle]
|
||||||
|
max-line-length = 120
|
||||||
|
statistics = True
|
Loading…
Reference in a new issue