diff options
author | Maximilian Hils <git@maximilianhils.com> | 2016-10-22 18:06:26 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-22 18:06:26 -0700 |
commit | 37a05e27526d22a23f7579dd1dbb0a04ea4eedcc (patch) | |
tree | 85e80fee9414293bed2553a3e9b10837aeb09c6c | |
parent | ceb12e86280f754f9147b208818cce9831bf7f86 (diff) | |
parent | 909ecd040a3741e598b52e3b8ac1928e2b9dad37 (diff) | |
download | mitmproxy-37a05e27526d22a23f7579dd1dbb0a04ea4eedcc.tar.gz mitmproxy-37a05e27526d22a23f7579dd1dbb0a04ea4eedcc.tar.bz2 mitmproxy-37a05e27526d22a23f7579dd1dbb0a04ea4eedcc.zip |
Merge pull request #1653 from mhils/issue-1651
Fix README Syntax (#1651)
-rw-r--r-- | README.rst | 5 | ||||
-rw-r--r-- | tox.ini | 8 |
2 files changed, 8 insertions, 5 deletions
@@ -43,7 +43,7 @@ Join our developer chat on Slack if you would like to hack on mitmproxy itself. Installation ------------ -The installation instructions are `here <http://docs.mitmproxy.org/en/stable/install.html>`_. +The installation instructions are `here <http://docs.mitmproxy.org/en/stable/install.html>`__. If you want to contribute changes, keep on reading. @@ -52,7 +52,7 @@ Hacking To get started hacking on mitmproxy, make sure you have Python_ 3.5.x or above with virtualenv_ installed (you can find installation instructions for virtualenv -`here <http://virtualenv.readthedocs.org/en/latest/>`_). Then do the following: +`here <http://virtualenv.readthedocs.org/en/latest/>`__). Then do the following: .. code-block:: text @@ -188,6 +188,5 @@ PR checks will fail and block merging. We are using this command to check for st .. _.env: https://github.com/mitmproxy/mitmproxy/blob/master/.env .. _Sphinx: http://sphinx-doc.org/ .. _sphinx-autobuild: https://pypi.python.org/pypi/sphinx-autobuild -.. _issue_tracker: https://github.com/mitmproxy/mitmproxy/issues .. _PEP8: https://www.python.org/dev/peps/pep-0008 .. _Google Style Guide: https://google.github.io/styleguide/pyguide.html @@ -18,5 +18,9 @@ changedir = docs commands = sphinx-build -W -b html -d {envtmpdir}/doctrees . {envtmpdir}/html [testenv:lint] -deps = flake8>=2.6.2, <3.1 -commands = flake8 --jobs 8 --count mitmproxy pathod examples test +deps = + flake8>=2.6.2, <3.1 + rstcheck>=2.2, <3.0 +commands = + flake8 --jobs 8 --count mitmproxy pathod examples test + rstcheck README.rst
\ No newline at end of file |