Skip to content

Commit

Permalink
[refs #31] Updating documentation to include information about single…
Browse files Browse the repository at this point in the history
… files
  • Loading branch information
carlio committed Oct 20, 2014
1 parent 0e71b55 commit 8c78cd3
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ The simplest way to run prospector is from the project root with no arguments. I

prospector

You can specify a path to check::

prospector path/to/my/package

And you can specify a single python module::

prospector module/to/check.py

See below for :ref:`a complete list of options and flags<full_options>`. You can also run ``prospector --help`` for a full list of options and their effects.

Expand All @@ -19,7 +26,7 @@ The default output format of ``prospector`` is designed to be human readable. Yo
+-------------+----------------------------------------------------------------------------+
| Format Name | Notes |
+=============+============================================================================+
| ``emacs`` | Support for emacs compilation output mode, see `issue_16`_. |
| ``emacs`` | | Support for emacs compilation output mode, see `issue_16`_. |
+-------------+----------------------------------------------------------------------------+
| ``grouped`` | | Similar to ``text``, but groups all message on the same line together |
| | | rather than having a separate entry per message. |
Expand All @@ -33,16 +40,11 @@ The default output format of ``prospector`` is designed to be human readable. Yo
| ``json`` | | Produces a structured, parseable output of the messages and summary. See |
| | | below for more information about the structure. |
+-------------+----------------------------------------------------------------------------+
| ``yaml`` | Same as JSON except produces YAML output. |
| ``yaml`` | | Same as JSON except produces YAML output. |
+-------------+----------------------------------------------------------------------------+
| ``text`` | The default output format, a simple human readable format. |
| ``text`` | | The default output format, a simple human readable format. |
+-------------+----------------------------------------------------------------------------+

JSON Structure
``````````````




If your code uses frameworks and libraries
''''''''''''''''''''''''''''''''''''''''''
Expand Down

0 comments on commit 8c78cd3

Please sign in to comment.