mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-13 16:14:18 +00:00
fix manual gitlab links
This commit is contained in:
parent
e0116d8e77
commit
e1bf883668
7 changed files with 11 additions and 11 deletions
|
|
@ -55,10 +55,10 @@ Links
|
||||||
|
|
||||||
* `Flake8 Documentation <http://flake8.pycqa.org/en/latest/>`_
|
* `Flake8 Documentation <http://flake8.pycqa.org/en/latest/>`_
|
||||||
|
|
||||||
* `GitLab Project <https://gitlab.com/pycqa/flake8>`_
|
* `GitHub Project <https://github.com/pycqa/flake8>`_
|
||||||
|
|
||||||
* `All (Open and Closed) Issues
|
* `All (Open and Closed) Issues
|
||||||
<https://gitlab.com/pycqa/flake8/issues?scope=all&sort=updated_desc&state=all>`_
|
<https://github.com/pycqa/flake8/issues?q=is%3Aissue>`_
|
||||||
|
|
||||||
* `Code-Quality Archives
|
* `Code-Quality Archives
|
||||||
<https://mail.python.org/mailman/listinfo/code-quality>`_
|
<https://mail.python.org/mailman/listinfo/code-quality>`_
|
||||||
|
|
|
||||||
|
|
@ -51,7 +51,7 @@ Filing a Bug
|
||||||
============
|
============
|
||||||
|
|
||||||
When filing a bug against |Flake8|, please fill out the issue template as it
|
When filing a bug against |Flake8|, please fill out the issue template as it
|
||||||
is provided to you by `GitLab`_. If your bug is in reference to one of the
|
is provided to you by `GitHub`_. If your bug is in reference to one of the
|
||||||
checks that |Flake8| reports by default, please do not report them to |Flake8|
|
checks that |Flake8| reports by default, please do not report them to |Flake8|
|
||||||
unless |Flake8| is doing something to prevent the check from running or you
|
unless |Flake8| is doing something to prevent the check from running or you
|
||||||
have some reason to believe |Flake8| is inhibiting the effectiveness of the
|
have some reason to believe |Flake8| is inhibiting the effectiveness of the
|
||||||
|
|
@ -131,7 +131,7 @@ documentation generation and refresh the documentation you're working on.
|
||||||
Contributing Code
|
Contributing Code
|
||||||
=================
|
=================
|
||||||
|
|
||||||
|Flake8| development happens on `GitLab`_. Code contributions should be
|
|Flake8| development happens on `GitHub`_. Code contributions should be
|
||||||
submitted there.
|
submitted there.
|
||||||
|
|
||||||
Merge requests should:
|
Merge requests should:
|
||||||
|
|
@ -202,8 +202,8 @@ delivered.
|
||||||
.. _tox:
|
.. _tox:
|
||||||
https://tox.readthedocs.io/
|
https://tox.readthedocs.io/
|
||||||
|
|
||||||
.. _GitLab:
|
.. _GitHub:
|
||||||
https://gitlab.com/pycqa/flake8
|
https://github.com/pycqa/flake8
|
||||||
|
|
||||||
.. _pycodestyle:
|
.. _pycodestyle:
|
||||||
https://github.com/pycqa/pycodestyle
|
https://github.com/pycqa/pycodestyle
|
||||||
|
|
|
||||||
|
|
@ -144,4 +144,4 @@ McCabe: https://github.com/pycqa/mccabe
|
||||||
BUGS
|
BUGS
|
||||||
====
|
====
|
||||||
|
|
||||||
Please report all bugs to https://gitlab.com/pycqa/flake8
|
Please report all bugs to https://github.com/pycqa/flake8
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,7 @@ like:
|
||||||
description="our extension to flake8",
|
description="our extension to flake8",
|
||||||
author="Me",
|
author="Me",
|
||||||
author_email="example@example.com",
|
author_email="example@example.com",
|
||||||
url="https://gitlab.com/me/flake8_example",
|
url="https://github.com/me/flake8_example",
|
||||||
packages=[
|
packages=[
|
||||||
"flake8_example",
|
"flake8_example",
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ started is to add this configuration to your ``.pre-commit-config.yaml``:
|
||||||
|
|
||||||
.. code-block:: yaml
|
.. code-block:: yaml
|
||||||
|
|
||||||
- repo: https://gitlab.com/pycqa/flake8
|
- repo: https://github.com/pycqa/flake8
|
||||||
rev: '' # pick a git hash / tag to point to
|
rev: '' # pick a git hash / tag to point to
|
||||||
hooks:
|
hooks:
|
||||||
- id: flake8
|
- id: flake8
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ setuptools.setup(
|
||||||
description='Example plugin to Flake8',
|
description='Example plugin to Flake8',
|
||||||
author='Ian Cordasco',
|
author='Ian Cordasco',
|
||||||
author_email='graffatcolmingov@gmail.com',
|
author_email='graffatcolmingov@gmail.com',
|
||||||
url='https://gitlab.com/pycqa/flake8',
|
url='https://github.com/pycqa/flake8',
|
||||||
package_dir={'': 'src/'},
|
package_dir={'': 'src/'},
|
||||||
packages=['flake8_example_plugin'],
|
packages=['flake8_example_plugin'],
|
||||||
entry_points={
|
entry_points={
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ author = Tarek Ziade
|
||||||
author_email = tarek@ziade.org
|
author_email = tarek@ziade.org
|
||||||
maintainer = Ian Stapleton Cordasco
|
maintainer = Ian Stapleton Cordasco
|
||||||
maintainer_email = graffatcolmingov@gmail.com
|
maintainer_email = graffatcolmingov@gmail.com
|
||||||
url = https://gitlab.com/pycqa/flake8
|
url = https://github.com/pycqa/flake8
|
||||||
classifiers =
|
classifiers =
|
||||||
Development Status :: 5 - Production/Stable
|
Development Status :: 5 - Production/Stable
|
||||||
Environment :: Console
|
Environment :: Console
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue