mirror of
https://github.com/shouptech/humulus.git
synced 2026-02-03 13:59:43 +00:00
Add configuration for doc8
This commit is contained in:
parent
485f5192ea
commit
78ebfb5da7
3 changed files with 16 additions and 3 deletions
|
|
@ -41,7 +41,7 @@ steps:
|
|||
# Install pre-requisites
|
||||
- pip install -r requirements-dev.txt
|
||||
# Perform linting
|
||||
- doc8 docs --ignore-path docs/_build
|
||||
- doc8
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
|
|
|
|||
10
README.rst
10
README.rst
|
|
@ -17,11 +17,19 @@
|
|||
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/
|
||||
.. _CouchDB: http://flask.pocoo.org/
|
||||
|
||||
Documentation
|
||||
-------------
|
||||
|
||||
For help installing and using Humulus, please visit the documentation_.
|
||||
|
||||
.. _documentation: https://humulus.shoup.io/
|
||||
|
||||
License
|
||||
-------
|
||||
|
||||
|
|
|
|||
|
|
@ -9,10 +9,15 @@ branch = True
|
|||
source = humulus
|
||||
|
||||
[flake8]
|
||||
exclude = .svn,CVS,.bzr,.hg,.git,__pycache__,.tox,.eggs,*.egg,instance
|
||||
exclude = .git,__pycache__,.tox,.eggs,*.egg,instance
|
||||
show-source = True
|
||||
count = True
|
||||
max-line-length = 79
|
||||
max-complexity = 18
|
||||
ignore = W503
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue