]> crepu.dev Git - config.git/blame - djavu-asus/elpy/rpc-venv/lib/python3.11/site-packages/flake8-6.1.0.dist-info/METADATA
Configuracion en desarrollo PC pega
[config.git] / djavu-asus / elpy / rpc-venv / lib / python3.11 / site-packages / flake8-6.1.0.dist-info / METADATA
CommitLineData
53e6db90
DC
1Metadata-Version: 2.1
2Name: flake8
3Version: 6.1.0
4Summary: the modular source code checker: pep8 pyflakes and co
5Home-page: https://github.com/pycqa/flake8
6Author: Tarek Ziade
7Author-email: tarek@ziade.org
8Maintainer: Ian Stapleton Cordasco
9Maintainer-email: graffatcolmingov@gmail.com
10License: MIT
11Classifier: Development Status :: 5 - Production/Stable
12Classifier: Environment :: Console
13Classifier: Framework :: Flake8
14Classifier: Intended Audience :: Developers
15Classifier: License :: OSI Approved :: MIT License
16Classifier: Programming Language :: Python
17Classifier: Programming Language :: Python :: 3
18Classifier: Programming Language :: Python :: 3 :: Only
19Classifier: Programming Language :: Python :: Implementation :: CPython
20Classifier: Programming Language :: Python :: Implementation :: PyPy
21Classifier: Topic :: Software Development :: Libraries :: Python Modules
22Classifier: Topic :: Software Development :: Quality Assurance
23Requires-Python: >=3.8.1
24Description-Content-Type: text/x-rst
25License-File: LICENSE
26Requires-Dist: mccabe (<0.8.0,>=0.7.0)
27Requires-Dist: pycodestyle (<2.12.0,>=2.11.0)
28Requires-Dist: pyflakes (<3.2.0,>=3.1.0)
29
30.. image:: https://github.com/PyCQA/flake8/workflows/main/badge.svg
31 :target: https://github.com/PyCQA/flake8/actions?query=workflow%3Amain
32 :alt: build status
33
34.. image:: https://results.pre-commit.ci/badge/github/PyCQA/flake8/main.svg
35 :target: https://results.pre-commit.ci/latest/github/PyCQA/flake8/main
36 :alt: pre-commit.ci status
37
38.. image:: https://img.shields.io/discord/825463413634891776.svg
39 :target: https://discord.gg/qYxpadCgkx
40 :alt: Discord
41
42========
43 Flake8
44========
45
46Flake8 is a wrapper around these tools:
47
48- PyFlakes
49- pycodestyle
50- Ned Batchelder's McCabe script
51
52Flake8 runs all the tools by launching the single ``flake8`` command.
53It displays the warnings in a per-file, merged output.
54
55It also adds a few features:
56
57- files that contain this line are skipped::
58
59 # flake8: noqa
60
61- lines that contain a ``# noqa`` comment at the end will not issue warnings.
62- you can ignore specific errors on a line with ``# noqa: <error>``, e.g.,
63 ``# noqa: E234``. Multiple codes can be given, separated by comma. The ``noqa`` token is case insensitive, the colon before the list of codes is required otherwise the part after ``noqa`` is ignored
64- Git and Mercurial hooks
65- extendable through ``flake8.extension`` and ``flake8.formatting`` entry
66 points
67
68
69Quickstart
70==========
71
72See our `quickstart documentation
73<https://flake8.pycqa.org/en/latest/index.html#quickstart>`_ for how to install
74and get started with Flake8.
75
76
77Frequently Asked Questions
78==========================
79
80Flake8 maintains an `FAQ <https://flake8.pycqa.org/en/latest/faq.html>`_ in its
81documentation.
82
83
84Questions or Feedback
85=====================
86
87If you have questions you'd like to ask the developers, or feedback you'd like
88to provide, feel free to use the mailing list: code-quality@python.org
89
90We would love to hear from you. Additionally, if you have a feature you'd like
91to suggest, the mailing list would be the best place for it.
92
93
94Links
95=====
96
97* `Flake8 Documentation <https://flake8.pycqa.org/en/latest/>`_
98
99* `GitHub Project <https://github.com/pycqa/flake8>`_
100
101* `All (Open and Closed) Issues
102 <https://github.com/pycqa/flake8/issues?q=is%3Aissue>`_
103
104* `Code-Quality Archives
105 <https://mail.python.org/mailman/listinfo/code-quality>`_
106
107* `Code of Conduct
108 <https://flake8.pycqa.org/en/latest/internal/contributing.html#code-of-conduct>`_
109
110* `Getting Started Contributing
111 <https://flake8.pycqa.org/en/latest/internal/contributing.html>`_
112
113
114Maintenance
115===========
116
117Flake8 was created by Tarek Ziadé and is currently maintained by `anthony sottile
118<https://github.com/sponsors/asottile>`_ and `Ian Cordasco
119<https://www.coglib.com/~icordasc/>`_