1
0
Fork 0
mirror of https://github.com/shouptech/humulus.git synced 2026-02-03 13:49:41 +00:00

Add configuration for doc8

This commit is contained in:
Emma 2019-08-06 14:44:05 -06:00
parent 485f5192ea
commit 78ebfb5da7
3 changed files with 16 additions and 3 deletions

View file

@ -41,7 +41,7 @@ steps:
# Install pre-requisites # Install pre-requisites
- pip install -r requirements-dev.txt - pip install -r requirements-dev.txt
# Perform linting # Perform linting
- doc8 docs --ignore-path docs/_build - doc8
--- ---
kind: pipeline kind: pipeline

View file

@ -17,11 +17,19 @@
Humulus Humulus
======= =======
Humulus is an open-source homebrew beer recipe webapp built using Flask_ and CouchDB_. Humulus is an open-source homebrew beer recipe webapp built using Flask_ and
CouchDB_.
.. _Flask: http://couchdb.apache.org/ .. _Flask: http://couchdb.apache.org/
.. _CouchDB: http://flask.pocoo.org/ .. _CouchDB: http://flask.pocoo.org/
Documentation
-------------
For help installing and using Humulus, please visit the documentation_.
.. _documentation: https://humulus.shoup.io/
License License
------- -------

View file

@ -9,10 +9,15 @@ branch = True
source = humulus source = humulus
[flake8] [flake8]
exclude = .svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg,instance exclude = .git,__pycache__,.tox,.eggs,*.egg,instance
show-source = True show-source = True
count = True count = True
max-line-length = 79 max-line-length = 79
max-complexity = 18 max-complexity = 18
ignore = W503 ignore = W503
select = B,C,E,F,W,T4,B9 select = B,C,E,F,W,T4,B9
[doc8]
max-line-length = 79
extension = .rst
ignore-path = docs/_build,pip-wheel-metadata,.git,__pycache__,.tox,.eggs,*.egg,instance