ambv/black -> python/black (#819)
This commit is contained in:
parent
597a0e102c
commit
4a953b7241
@ -49,5 +49,5 @@ deploy:
|
|||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
on:
|
on:
|
||||||
condition: $TRAVIS_PYTHON_VERSION == '3.6'
|
condition: $TRAVIS_PYTHON_VERSION == '3.6'
|
||||||
repo: ambv/black
|
repo: python/black
|
||||||
tags: true
|
tags: true
|
||||||
|
@ -11,7 +11,7 @@ In terms of inspiration, *Black* is about as configurable as *gofmt*.
|
|||||||
This is deliberate.
|
This is deliberate.
|
||||||
|
|
||||||
Bug reports and fixes are always welcome! Please follow the [issue
|
Bug reports and fixes are always welcome! Please follow the [issue
|
||||||
template on GitHub](https://github.com/ambv/black/issues/new) for best
|
template on GitHub](https://github.com/python/black/issues/new) for best
|
||||||
results.
|
results.
|
||||||
|
|
||||||
Before you suggest a new feature or configuration knob, ask yourself why
|
Before you suggest a new feature or configuration knob, ask yourself why
|
||||||
|
26
README.md
26
README.md
@ -1,14 +1,14 @@
|
|||||||

|

|
||||||
<h2 align="center">The Uncompromising Code Formatter</h2>
|
<h2 align="center">The Uncompromising Code Formatter</h2>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://travis-ci.org/ambv/black"><img alt="Build Status" src="https://travis-ci.org/ambv/black.svg?branch=master"></a>
|
<a href="https://travis-ci.org/python/black"><img alt="Build Status" src="https://travis-ci.org/python/black.svg?branch=master"></a>
|
||||||
<a href="https://black.readthedocs.io/en/stable/?badge=stable"><img alt="Documentation Status" src="https://readthedocs.org/projects/black/badge/?version=stable"></a>
|
<a href="https://black.readthedocs.io/en/stable/?badge=stable"><img alt="Documentation Status" src="https://readthedocs.org/projects/black/badge/?version=stable"></a>
|
||||||
<a href="https://coveralls.io/github/ambv/black?branch=master"><img alt="Coverage Status" src="https://coveralls.io/repos/github/ambv/black/badge.svg?branch=master"></a>
|
<a href="https://coveralls.io/github/python/black?branch=master"><img alt="Coverage Status" src="https://coveralls.io/repos/github/python/black/badge.svg?branch=master"></a>
|
||||||
<a href="https://github.com/ambv/black/blob/master/LICENSE"><img alt="License: MIT" src="https://black.readthedocs.io/en/stable/_static/license.svg"></a>
|
<a href="https://github.com/python/black/blob/master/LICENSE"><img alt="License: MIT" src="https://black.readthedocs.io/en/stable/_static/license.svg"></a>
|
||||||
<a href="https://pypi.org/project/black/"><img alt="PyPI" src="https://black.readthedocs.io/en/stable/_static/pypi.svg"></a>
|
<a href="https://pypi.org/project/black/"><img alt="PyPI" src="https://black.readthedocs.io/en/stable/_static/pypi.svg"></a>
|
||||||
<a href="https://pepy.tech/project/black"><img alt="Downloads" src="https://pepy.tech/badge/black"></a>
|
<a href="https://pepy.tech/project/black"><img alt="Downloads" src="https://pepy.tech/badge/black"></a>
|
||||||
<a href="https://github.com/ambv/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
|
<a href="https://github.com/python/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
> “Any color you like.”
|
> “Any color you like.”
|
||||||
@ -370,7 +370,7 @@ The main reason to standardize on a single form of quotes is aesthetics.
|
|||||||
Having one kind of quotes everywhere reduces reader distraction.
|
Having one kind of quotes everywhere reduces reader distraction.
|
||||||
It will also enable a future version of *Black* to merge consecutive
|
It will also enable a future version of *Black* to merge consecutive
|
||||||
string literals that ended up on the same line (see
|
string literals that ended up on the same line (see
|
||||||
[#26](https://github.com/ambv/black/issues/26) for details).
|
[#26](https://github.com/python/black/issues/26) for details).
|
||||||
|
|
||||||
Why settle on double quotes? They anticipate apostrophes in English
|
Why settle on double quotes? They anticipate apostrophes in English
|
||||||
text. They match the docstring standard described in [PEP 257](https://www.python.org/dev/peps/pep-0257/#what-is-a-docstring).
|
text. They match the docstring standard described in [PEP 257](https://www.python.org/dev/peps/pep-0257/#what-is-a-docstring).
|
||||||
@ -694,16 +694,16 @@ Configuration:
|
|||||||
To install with [vim-plug](https://github.com/junegunn/vim-plug):
|
To install with [vim-plug](https://github.com/junegunn/vim-plug):
|
||||||
|
|
||||||
```
|
```
|
||||||
Plug 'ambv/black'
|
Plug 'python/black'
|
||||||
```
|
```
|
||||||
|
|
||||||
or with [Vundle](https://github.com/VundleVim/Vundle.vim):
|
or with [Vundle](https://github.com/VundleVim/Vundle.vim):
|
||||||
|
|
||||||
```
|
```
|
||||||
Plugin 'ambv/black'
|
Plugin 'python/black'
|
||||||
```
|
```
|
||||||
|
|
||||||
or you can copy the plugin from [plugin/black.vim](https://github.com/ambv/black/tree/master/plugin/black.vim).
|
or you can copy the plugin from [plugin/black.vim](https://github.com/python/black/tree/master/plugin/black.vim).
|
||||||
Let me know if this requires any changes to work with Vim 8's builtin
|
Let me know if this requires any changes to work with Vim 8's builtin
|
||||||
`packadd`, or Pathogen, and so on.
|
`packadd`, or Pathogen, and so on.
|
||||||
|
|
||||||
@ -856,7 +856,7 @@ installed](https://pre-commit.com/#install), add this to the
|
|||||||
`.pre-commit-config.yaml` in your repository:
|
`.pre-commit-config.yaml` in your repository:
|
||||||
```yaml
|
```yaml
|
||||||
repos:
|
repos:
|
||||||
- repo: https://github.com/ambv/black
|
- repo: https://github.com/python/black
|
||||||
rev: stable
|
rev: stable
|
||||||
hooks:
|
hooks:
|
||||||
- id: black
|
- id: black
|
||||||
@ -916,16 +916,16 @@ and [`pipenv`](https://docs.pipenv.org/):
|
|||||||
Use the badge in your project's README.md:
|
Use the badge in your project's README.md:
|
||||||
|
|
||||||
```markdown
|
```markdown
|
||||||
[](https://github.com/ambv/black)
|
[](https://github.com/python/black)
|
||||||
```
|
```
|
||||||
|
|
||||||
Using the badge in README.rst:
|
Using the badge in README.rst:
|
||||||
```
|
```
|
||||||
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
|
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
|
||||||
:target: https://github.com/ambv/black
|
:target: https://github.com/python/black
|
||||||
```
|
```
|
||||||
|
|
||||||
Looks like this: [](https://github.com/ambv/black)
|
Looks like this: [](https://github.com/python/black)
|
||||||
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
6
black.py
6
black.py
@ -3386,7 +3386,7 @@ def _v(node: ast.AST, depth: int = 0) -> Iterator[str]:
|
|||||||
log = dump_to_file("".join(traceback.format_tb(exc.__traceback__)), dst)
|
log = dump_to_file("".join(traceback.format_tb(exc.__traceback__)), dst)
|
||||||
raise AssertionError(
|
raise AssertionError(
|
||||||
f"INTERNAL ERROR: Black produced invalid code: {exc}. "
|
f"INTERNAL ERROR: Black produced invalid code: {exc}. "
|
||||||
f"Please report a bug on https://github.com/ambv/black/issues. "
|
f"Please report a bug on https://github.com/python/black/issues. "
|
||||||
f"This invalid output might be helpful: {log}"
|
f"This invalid output might be helpful: {log}"
|
||||||
) from None
|
) from None
|
||||||
|
|
||||||
@ -3397,7 +3397,7 @@ def _v(node: ast.AST, depth: int = 0) -> Iterator[str]:
|
|||||||
raise AssertionError(
|
raise AssertionError(
|
||||||
f"INTERNAL ERROR: Black produced code that is not equivalent to "
|
f"INTERNAL ERROR: Black produced code that is not equivalent to "
|
||||||
f"the source. "
|
f"the source. "
|
||||||
f"Please report a bug on https://github.com/ambv/black/issues. "
|
f"Please report a bug on https://github.com/python/black/issues. "
|
||||||
f"This diff might be helpful: {log}"
|
f"This diff might be helpful: {log}"
|
||||||
) from None
|
) from None
|
||||||
|
|
||||||
@ -3413,7 +3413,7 @@ def assert_stable(src: str, dst: str, mode: FileMode) -> None:
|
|||||||
raise AssertionError(
|
raise AssertionError(
|
||||||
f"INTERNAL ERROR: Black produced different code on the second pass "
|
f"INTERNAL ERROR: Black produced different code on the second pass "
|
||||||
f"of the formatter. "
|
f"of the formatter. "
|
||||||
f"Please report a bug on https://github.com/ambv/black/issues. "
|
f"Please report a bug on https://github.com/python/black/issues. "
|
||||||
f"This diff might be helpful: {log}"
|
f"This diff might be helpful: {log}"
|
||||||
) from None
|
) from None
|
||||||
|
|
||||||
|
@ -161,7 +161,7 @@ def generate_sections_from_readme():
|
|||||||
"show_related": False,
|
"show_related": False,
|
||||||
"description": "“Any color you like.”",
|
"description": "“Any color you like.”",
|
||||||
"github_button": True,
|
"github_button": True,
|
||||||
"github_user": "ambv",
|
"github_user": "python",
|
||||||
"github_repo": "black",
|
"github_repo": "black",
|
||||||
"github_type": "star",
|
"github_type": "star",
|
||||||
"show_powered_by": True,
|
"show_powered_by": True,
|
||||||
|
@ -6,4 +6,4 @@ dependencies:
|
|||||||
- Sphinx==1.7.2
|
- Sphinx==1.7.2
|
||||||
- pip:
|
- pip:
|
||||||
- recommonmark==0.4.0
|
- recommonmark==0.4.0
|
||||||
- git+https://git@github.com/ambv/black.git
|
- git+https://git@github.com/python/black.git
|
||||||
|
@ -46,7 +46,7 @@ authors = [
|
|||||||
"Mika Naylor <mail@autophagy.io>",
|
"Mika Naylor <mail@autophagy.io>",
|
||||||
"Zsolt Dollenstein <zsol.zsol@gmail.com>",
|
"Zsolt Dollenstein <zsol.zsol@gmail.com>",
|
||||||
]
|
]
|
||||||
homepage = "https://github.com/ambv/black/"
|
homepage = "https://github.com/python/black/"
|
||||||
documentation = "https://black.readthedocs.io/en/stable/"
|
documentation = "https://black.readthedocs.io/en/stable/"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
keywords = ["automation", "formatter", "yapf", "autopep8", "gofmt"]
|
keywords = ["automation", "formatter", "yapf", "autopep8", "gofmt"]
|
||||||
|
2
setup.py
2
setup.py
@ -34,7 +34,7 @@ def get_version() -> str:
|
|||||||
keywords="automation formatter yapf autopep8 pyfmt gofmt rustfmt",
|
keywords="automation formatter yapf autopep8 pyfmt gofmt rustfmt",
|
||||||
author="Łukasz Langa",
|
author="Łukasz Langa",
|
||||||
author_email="lukasz@langa.pl",
|
author_email="lukasz@langa.pl",
|
||||||
url="https://github.com/ambv/black",
|
url="https://github.com/python/black",
|
||||||
license="MIT",
|
license="MIT",
|
||||||
py_modules=["black", "blackd"],
|
py_modules=["black", "blackd"],
|
||||||
packages=["blib2to3", "blib2to3.pgen2"],
|
packages=["blib2to3", "blib2to3.pgen2"],
|
||||||
|
Loading…
Reference in New Issue
Block a user