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:
parent
485f5192ea
commit
78ebfb5da7
3 changed files with 16 additions and 3 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
10
README.rst
10
README.rst
|
|
@ -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
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue