~ibmcharmers/charms/xenial/ibm-cinder-storwize-svc/trunk

« back to all changes in this revision

Viewing changes to .tox/py35/lib/python3.5/site-packages/flake8-3.3.0.dist-info/DESCRIPTION.rst

  • Committer: Ankammarao
  • Date: 2017-03-06 05:11:42 UTC
  • Revision ID: achittet@in.ibm.com-20170306051142-dpg27z4es1k56hfn
Marked tests folder executable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
========
 
2
 Flake8
 
3
========
 
4
 
 
5
Flake8 is a wrapper around these tools:
 
6
 
 
7
- PyFlakes
 
8
- pycodestyle
 
9
- Ned Batchelder's McCabe script
 
10
 
 
11
Flake8 runs all the tools by launching the single ``flake8`` command.
 
12
It displays the warnings in a per-file, merged output.
 
13
 
 
14
It also adds a few features:
 
15
 
 
16
- files that contain this line are skipped::
 
17
 
 
18
    # flake8: noqa
 
19
 
 
20
- lines that contain a ``# noqa`` comment at the end will not issue warnings.
 
21
- you can ignore specific errors on a line with ``# noqa: <error>``, e.g.,
 
22
  ``# noqa: E234``
 
23
- Git and Mercurial hooks
 
24
- extendable through ``flake8.extension`` and ``flake8.formatting`` entry
 
25
  points
 
26
 
 
27
 
 
28
Quickstart
 
29
==========
 
30
 
 
31
See our `quickstart documentation
 
32
<http://flake8.pycqa.org/en/latest/index.html#quickstart>`_ for how to install
 
33
and get started with Flake8.
 
34
 
 
35
 
 
36
Frequently Asked Questions
 
37
==========================
 
38
 
 
39
Flake8 maintains an `FAQ <http://flake8.pycqa.org/en/latest/faq.html>`_ in its
 
40
documentation.
 
41
 
 
42
 
 
43
Questions or Feedback
 
44
=====================
 
45
 
 
46
If you have questions you'd like to ask the developers, or feedback you'd like
 
47
to provide, feel free to use the mailing list: code-quality@python.org
 
48
 
 
49
We would love to hear from you. Additionally, if you have a feature you'd like
 
50
to suggest, the mailing list would be the best place for it.
 
51
 
 
52
 
 
53
Links
 
54
=====
 
55
 
 
56
* `Flake8 Documentation <http://flake8.pycqa.org/en/latest/>`_
 
57
 
 
58
* `GitLab Project <https://gitlab.com/pycqa/flake8>`_
 
59
 
 
60
* `All (Open and Closed) Issues
 
61
  <https://gitlab.com/pycqa/flake8/issues?scope=all&sort=updated_desc&state=all>`_
 
62
 
 
63
* `Code-Quality Archives
 
64
  <https://mail.python.org/mailman/listinfo/code-quality>`_
 
65
 
 
66
* `Code of Conduct
 
67
  <http://flake8.pycqa.org/en/latest/internal/contributing.html#code-of-conduct>`_
 
68
 
 
69
* `Getting Started Contributing
 
70
  <http://flake8.pycqa.org/en/latest/internal/contributing.html>`_
 
71
 
 
72
 
 
73
Maintenance
 
74
===========
 
75
 
 
76
Flake8 was created by Tarek Ziadé and is currently maintained by `Ian Cordasco
 
77
<https://coglib.com/~icordasc/>`_
 
78
 
 
79