diff options
author | John L. Villalovos <john@sodarock.com> | 2021-04-29 08:21:50 -0700 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2021-04-30 07:07:17 -0700 |
commit | ab343ef6da708746aa08a972b461a5e51d898f8b (patch) | |
tree | 98eabab08089a21386e4e56a1fe8fd6ff90af52d /docs/conf.py | |
parent | 98891eb2c52051134fd3046a4ef5d7b0a6af8fec (diff) | |
download | gitlab-ab343ef6da708746aa08a972b461a5e51d898f8b.tar.gz |
chore: have flake8 check the entire project
Have flake8 run at the top-level of the projects instead of just the
gitlab directory.
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/docs/conf.py b/docs/conf.py index 681af22..fa14e6f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,11 +18,10 @@ from __future__ import unicode_literals import os import sys -import sphinx +import gitlab sys.path.append("../") sys.path.append(os.path.dirname(__file__)) -import gitlab on_rtd = os.environ.get("READTHEDOCS", None) == "True" @@ -207,11 +206,11 @@ htmlhelp_basename = "python-gitlabdoc" latex_elements = { # The paper size ('letterpaper' or 'a4paper'). - #'papersize': 'letterpaper', - # The font size ('10pt', '11pt' or '12pt'). - #'pointsize': '10pt', - # Additional stuff for the LaTeX preamble. - #'preamble': '', + # 'papersize': 'letterpaper', + # The font size ('10pt', '11pt' or '12pt'). + # 'pointsize': '10pt', + # Additional stuff for the LaTeX preamble. + # 'preamble': '', } # Grouping the document tree into LaTeX files. List of tuples |