Changes between Version 5 and Version 6 of org/teams/MetricsTeam/MetricsPythonStyleGuide
- Timestamp:
- Jul 14, 2016, 4:15:46 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
org/teams/MetricsTeam/MetricsPythonStyleGuide
v5 v6 11 11 12 12 = Tools 13 There are tools like `pylint` that help following the standard. Currently, we do not have a preference here. Suggestions for other tools are welcome.14 13 14 Suggested tools are... 15 15 16 * [https://pypi.python.org/pypi/pyflakes pyflakes] - Static analysis checker. `pylint` can be useful too but pyflakes is more easily integrated into your test suite. 17 * [https://pypi.python.org/pypi/pycodestyle pycodestyle] - Previously called `pep8`, this is a highly configurable style checker that by default validates compliance with the PEP8 specification. 18 19 Stem provides [https://stem.torproject.org/api/util/test_tools.html testing functions] that make integrating with both of these easy.