]> git.madduck.net Git - etc/vim.git/blob - README.md

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

add Quora to orgs that use Black (#1532)
[etc/vim.git] / README.md
1 ![Black Logo](https://raw.githubusercontent.com/psf/black/master/docs/_static/logo2-readme.png)
2
3 <h2 align="center">The Uncompromising Code Formatter</h2>
4
5 <p align="center">
6 <a href="https://travis-ci.com/psf/black"><img alt="Build Status" src="https://travis-ci.com/psf/black.svg?branch=master"></a>
7 <a href="https://github.com/psf/black/actions"><img alt="Actions Status" src="https://github.com/psf/black/workflows/Test/badge.svg"></a>
8 <a href="https://github.com/psf/black/actions"><img alt="Actions Status" src="https://github.com/psf/black/workflows/Primer/badge.svg"></a>
9 <a href="https://black.readthedocs.io/en/stable/?badge=stable"><img alt="Documentation Status" src="https://readthedocs.org/projects/black/badge/?version=stable"></a>
10 <a href="https://coveralls.io/github/psf/black?branch=master"><img alt="Coverage Status" src="https://coveralls.io/repos/github/psf/black/badge.svg?branch=master"></a>
11 <a href="https://github.com/psf/black/blob/master/LICENSE"><img alt="License: MIT" src="https://black.readthedocs.io/en/stable/_static/license.svg"></a>
12 <a href="https://pypi.org/project/black/"><img alt="PyPI" src="https://img.shields.io/pypi/v/black"></a>
13 <a href="https://pepy.tech/project/black"><img alt="Downloads" src="https://pepy.tech/badge/black"></a>
14 <a href="https://github.com/psf/black"><img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>
15 </p>
16
17 > “Any color you like.”
18
19 _Black_ is the uncompromising Python code formatter. By using it, you agree to cede
20 control over minutiae of hand-formatting. In return, _Black_ gives you speed,
21 determinism, and freedom from `pycodestyle` nagging about formatting. You will save time
22 and mental energy for more important matters.
23
24 Blackened code looks the same regardless of the project you're reading. Formatting
25 becomes transparent after a while and you can focus on the content instead.
26
27 _Black_ makes code review faster by producing the smallest diffs possible.
28
29 Try it out now using the [Black Playground](https://black.now.sh). Watch the
30 [PyCon 2019 talk](https://youtu.be/esZLCuWs_2Y) to learn more.
31
32 ---
33
34 _Contents:_ **[Installation and usage](#installation-and-usage)** |
35 **[Code style](#the-black-code-style)** | **[Pragmatism](#pragmatism)** |
36 **[pyproject.toml](#pyprojecttoml)** | **[Editor integration](#editor-integration)** |
37 **[blackd](#blackd)** | **[black-primer](#black-primer)** |
38 **[Version control integration](#version-control-integration)** |
39 **[GitHub Actions](#github-actions)** |
40 **[Ignoring unmodified files](#ignoring-unmodified-files)** | **[Used by](#used-by)** |
41 **[Testimonials](#testimonials)** | **[Show your style](#show-your-style)** |
42 **[Contributing](#contributing-to-black)** | **[Change log](#change-log)** |
43 **[Authors](#authors)**
44
45 ---
46
47 ## Installation and usage
48
49 ### Installation
50
51 _Black_ can be installed by running `pip install black`. It requires Python 3.6.0+ to
52 run but you can reformat Python 2 code with it, too.
53
54 #### Install from GitHub
55
56 If you can't wait for the latest _hotness_ and want to install from GitHub, use:
57
58 `pip install git+git://github.com/psf/black`
59
60 ### Usage
61
62 To get started right away with sensible defaults:
63
64 ```sh
65 black {source_file_or_directory}
66 ```
67
68 You can run _Black_ as a package if running it as a script doesn't work:
69
70 ```sh
71 python -m black {source_file_or_directory}
72 ```
73
74 ### Command line options
75
76 _Black_ doesn't provide many options. You can list them by running `black --help`:
77
78 ```text
79 Usage: black [OPTIONS] [SRC]...
80
81   The uncompromising code formatter.
82
83 Options:
84   -c, --code TEXT                 Format the code passed in as a string.
85   -l, --line-length INTEGER       How many characters per line to allow.
86                                   [default: 88]
87
88   -t, --target-version [py27|py33|py34|py35|py36|py37|py38]
89                                   Python versions that should be supported by
90                                   Black's output. [default: per-file auto-
91                                   detection]
92
93   --pyi                           Format all input files like typing stubs
94                                   regardless of file extension (useful when
95                                   piping source on standard input).
96
97   -S, --skip-string-normalization
98                                   Don't normalize string quotes or prefixes.
99   --check                         Don't write the files back, just return the
100                                   status.  Return code 0 means nothing would
101                                   change.  Return code 1 means some files
102                                   would be reformatted. Return code 123 means
103                                   there was an internal error.
104
105   --diff                          Don't write the files back, just output a
106                                   diff for each file on stdout.
107
108   --color / --no-color            Show colored diff. Only applies when
109                                   `--diff` is given.
110
111   --fast / --safe                 If --fast given, skip temporary sanity
112                                   checks. [default: --safe]
113
114   --include TEXT                  A regular expression that matches files and
115                                   directories that should be included on
116                                   recursive searches.  An empty value means
117                                   all files are included regardless of the
118                                   name.  Use forward slashes for directories
119                                   on all platforms (Windows, too).  Exclusions
120                                   are calculated first, inclusions later.
121                                   [default: \.pyi?$]
122
123   --exclude TEXT                  A regular expression that matches files and
124                                   directories that should be excluded on
125                                   recursive searches.  An empty value means no
126                                   paths are excluded. Use forward slashes for
127                                   directories on all platforms (Windows, too).
128                                   Exclusions are calculated first, inclusions
129                                   later.  [default: /(\.eggs|\.git|\.hg|\.mypy
130                                   _cache|\.nox|\.tox|\.venv|\.svn|_build|buck-
131                                   out|build|dist)/]
132
133   --force-exclude TEXT            Like --exclude, but files and directories
134                                   matching this regex will be excluded even
135                                   when they are passed explicitly as arguments
136
137   -q, --quiet                     Don't emit non-error messages to stderr.
138                                   Errors are still emitted; silence those with
139                                   2>/dev/null.
140
141   -v, --verbose                   Also emit messages to stderr about files
142                                   that were not changed or were ignored due to
143                                   --exclude=.
144
145   --version                       Show the version and exit.
146   --config FILE                   Read configuration from PATH.
147   -h, --help                      Show this message and exit.
148 ```
149
150 _Black_ is a well-behaved Unix-style command-line tool:
151
152 - it does nothing if no sources are passed to it;
153 - it will read from standard input and write to standard output if `-` is used as the
154   filename;
155 - it only outputs messages to users on standard error;
156 - exits with code 0 unless an internal error occurred (or `--check` was used).
157
158 ### Using _Black_ with other tools
159
160 While _Black_ enforces formatting that conforms to PEP 8, other tools may raise warnings
161 about _Black_'s changes or will overwrite _Black_'s changes. A good example of this is
162 [isort](https://pypi.org/p/isort). Since _Black_ is barely configurable, these tools
163 should be configured to neither warn about nor overwrite _Black_'s changes.
164
165 Actual details on _Black_ compatible configurations for various tools can be found in
166 [compatible_configs](https://github.com/psf/black/blob/master/docs/compatible_configs.md).
167
168 ### Migrating your code style without ruining git blame
169
170 A long-standing argument against moving to automated code formatters like _Black_ is
171 that the migration will clutter up the output of `git blame`. This was a valid argument,
172 but since Git version 2.23, Git natively supports
173 [ignoring revisions in blame](https://git-scm.com/docs/git-blame#Documentation/git-blame.txt---ignore-revltrevgt)
174 with the `--ignore-rev` option. You can also pass a file listing the revisions to ignore
175 using the `--ignore-revs-file` option. The changes made by the revision will be ignored
176 when assigning blame. Lines modified by an ignored revision will be blamed on the
177 previous revision that modified those lines.
178
179 So when migrating your project's code style to _Black_, reformat everything and commit
180 the changes (preferably in one massive commit). Then put the full 40 characters commit
181 identifier(s) into a file.
182
183 ```
184 # Migrate code style to Black
185 5b4ab991dede475d393e9d69ec388fd6bd949699
186 ```
187
188 Afterwards, you can pass that file to `git blame` and see clean and meaningful blame
189 information.
190
191 ```console
192 $ git blame important.py --ignore-revs-file .git-blame-ignore-revs
193 7a1ae265 (John Smith 2019-04-15 15:55:13 -0400 1) def very_important_function(text, file):
194 abdfd8b0 (Alice Doe  2019-09-23 11:39:32 -0400 2)     text = text.lstrip()
195 7a1ae265 (John Smith 2019-04-15 15:55:13 -0400 3)     with open(file, "r+") as f:
196 7a1ae265 (John Smith 2019-04-15 15:55:13 -0400 4)         f.write(formatted)
197 ```
198
199 You can even configure `git` to automatically ignore revisions listed in a file on every
200 call to `git blame`.
201
202 ```console
203 $ git config blame.ignoreRevsFile .git-blame-ignore-revs
204 ```
205
206 **The one caveat is that GitHub and GitLab do not yet support ignoring revisions using
207 their native UI of blame.** So blame information will be cluttered with a reformatting
208 commit on those platforms. (If you'd like this feature, there's an open issue for
209 [GitLab](https://gitlab.com/gitlab-org/gitlab/-/issues/31423) and please let GitHub
210 know!)
211
212 ### NOTE: This is a beta product
213
214 _Black_ is already [successfully used](#used-by) by many projects, small and big. It
215 also sports a decent test suite. However, it is still very new. Things will probably be
216 wonky for a while. This is made explicit by the "Beta" trove classifier, as well as by
217 the "b" in the version number. What this means for you is that **until the formatter
218 becomes stable, you should expect some formatting to change in the future**. That being
219 said, no drastic stylistic changes are planned, mostly responses to bug reports.
220
221 Also, as a temporary safety measure, _Black_ will check that the reformatted code still
222 produces a valid AST that is equivalent to the original. This slows it down. If you're
223 feeling confident, use `--fast`.
224
225 ## The _Black_ code style
226
227 _Black_ is a PEP 8 compliant opinionated formatter. _Black_ reformats entire files in
228 place. It is not configurable. It doesn't take previous formatting into account. Your
229 main option of configuring _Black_ is that it doesn't reformat blocks that start with
230 `# fmt: off` and end with `# fmt: on`. `# fmt: on/off` have to be on the same level of
231 indentation. To learn more about _Black_'s opinions, to go
232 [the_black_code_style](https://github.com/psf/black/blob/master/docs/the_black_code_style.md).
233
234 Please refer to this document before submitting an issue. What seems like a bug might be
235 intended behaviour.
236
237 ## Pragmatism
238
239 Early versions of _Black_ used to be absolutist in some respects. They took after its
240 initial author. This was fine at the time as it made the implementation simpler and
241 there were not many users anyway. Not many edge cases were reported. As a mature tool,
242 _Black_ does make some exceptions to rules it otherwise holds. This
243 [section](https://github.com/psf/black/blob/master/docs/the_black_code_style.md#pragmatism)
244 of `the_black_code_style` describes what those exceptions are and why this is the case.
245
246 Please refer to this document before submitting an issue just like with the document
247 above. What seems like a bug might be intended behaviour.
248
249 ## pyproject.toml
250
251 _Black_ is able to read project-specific default values for its command line options
252 from a `pyproject.toml` file. This is especially useful for specifying custom
253 `--include` and `--exclude` patterns for your project.
254
255 **Pro-tip**: If you're asking yourself "Do I need to configure anything?" the answer is
256 "No". _Black_ is all about sensible defaults.
257
258 ### What on Earth is a `pyproject.toml` file?
259
260 [PEP 518](https://www.python.org/dev/peps/pep-0518/) defines `pyproject.toml` as a
261 configuration file to store build system requirements for Python projects. With the help
262 of tools like [Poetry](https://python-poetry.org/) or
263 [Flit](https://flit.readthedocs.io/en/latest/) it can fully replace the need for
264 `setup.py` and `setup.cfg` files.
265
266 ### Where _Black_ looks for the file
267
268 By default _Black_ looks for `pyproject.toml` starting from the common base directory of
269 all files and directories passed on the command line. If it's not there, it looks in
270 parent directories. It stops looking when it finds the file, or a `.git` directory, or a
271 `.hg` directory, or the root of the file system, whichever comes first.
272
273 If you're formatting standard input, _Black_ will look for configuration starting from
274 the current working directory.
275
276 You can also explicitly specify the path to a particular file that you want with
277 `--config`. In this situation _Black_ will not look for any other file.
278
279 If you're running with `--verbose`, you will see a blue message if a file was found and
280 used.
281
282 Please note `blackd` will not use `pyproject.toml` configuration.
283
284 ### Configuration format
285
286 As the file extension suggests, `pyproject.toml` is a
287 [TOML](https://github.com/toml-lang/toml) file. It contains separate sections for
288 different tools. _Black_ is using the `[tool.black]` section. The option keys are the
289 same as long names of options on the command line.
290
291 Note that you have to use single-quoted strings in TOML for regular expressions. It's
292 the equivalent of r-strings in Python. Multiline strings are treated as verbose regular
293 expressions by Black. Use `[ ]` to denote a significant space character.
294
295 <details>
296 <summary>Example `pyproject.toml`</summary>
297
298 ```toml
299 [tool.black]
300 line-length = 88
301 target-version = ['py37']
302 include = '\.pyi?$'
303 exclude = '''
304
305 (
306   /(
307       \.eggs         # exclude a few common directories in the
308     | \.git          # root of the project
309     | \.hg
310     | \.mypy_cache
311     | \.tox
312     | \.venv
313     | _build
314     | buck-out
315     | build
316     | dist
317   )/
318   | foo.py           # also separately exclude a file named foo.py in
319                      # the root of the project
320 )
321 '''
322 ```
323
324 </details>
325
326 ### Lookup hierarchy
327
328 Command-line options have defaults that you can see in `--help`. A `pyproject.toml` can
329 override those defaults. Finally, options provided by the user on the command line
330 override both.
331
332 _Black_ will only ever use one `pyproject.toml` file during an entire run. It doesn't
333 look for multiple files, and doesn't compose configuration from different levels of the
334 file hierarchy.
335
336 ## Editor integration
337
338 _Black_ can be integrated into many editors with plugins. They let you run _Black_ on
339 your code with the ease of doing it in your editor. To get started using _Black_ in your
340 editor of choice, please see
341 [editor_integration](https://github.com/psf/black/blob/master/docs/editor_integration.md).
342
343 Patches are welcome for editors without an editor integration or plugin! More
344 information can be found in
345 [editor_integration](https://github.com/psf/black/blob/master/docs/editor_integration.md#other-editors).
346
347 ## blackd
348
349 `blackd` is a small HTTP server that exposes Black's functionality over a simple
350 protocol. The main benefit of using it is to avoid paying the cost of starting up a new
351 Black process every time you want to blacken a file. Please refer to
352 [blackd](https://github.com/psf/black/blob/master/docs/blackd.md) to get the ball
353 rolling.
354
355 ## black-primer
356
357 `black-primer` is a tool built for CI (and huumans) to have _Black_ `--check` a number
358 of (configured in `primer.json`) Git accessible projects in parallel.
359 [black_primer](https://github.com/psf/black/blob/master/docs/black_primer.md) has more
360 information regarding its usage and configuration.
361
362 (A PR adding Mercurial support will be accepted.)
363
364 ## Version control integration
365
366 Use [pre-commit](https://pre-commit.com/). Once you
367 [have it installed](https://pre-commit.com/#install), add this to the
368 `.pre-commit-config.yaml` in your repository:
369
370 ```yaml
371 repos:
372   - repo: https://github.com/psf/black
373     rev: stable
374     hooks:
375       - id: black
376         language_version: python3.6
377 ```
378
379 Then run `pre-commit install` and you're ready to go.
380
381 Avoid using `args` in the hook. Instead, store necessary configuration in
382 `pyproject.toml` so that editors and command-line usage of Black all behave consistently
383 for your project. See _Black_'s own
384 [pyproject.toml](https://github.com/psf/black/blob/master/pyproject.toml) for an
385 example.
386
387 If you're already using Python 3.7, switch the `language_version` accordingly. Finally,
388 `stable` is a branch that tracks the latest release on PyPI. If you'd rather run on
389 master, this is also an option.
390
391 ## GitHub Actions
392
393 Create a file named `.github/workflows/black.yml` inside your repository with:
394
395 ```yaml
396 name: Lint
397
398 on: [push, pull_request]
399
400 jobs:
401   lint:
402     runs-on: ubuntu-latest
403     steps:
404       - uses: actions/checkout@v2
405       - uses: actions/setup-python@v2
406       - uses: psf/black@stable
407 ```
408
409 ## Ignoring unmodified files
410
411 _Black_ remembers files it has already formatted, unless the `--diff` flag is used or
412 code is passed via standard input. This information is stored per-user. The exact
413 location of the file depends on the _Black_ version and the system on which _Black_ is
414 run. The file is non-portable. The standard location on common operating systems is:
415
416 - Windows:
417   `C:\\Users\<username>\AppData\Local\black\black\Cache\<version>\cache.<line-length>.<file-mode>.pickle`
418 - macOS:
419   `/Users/<username>/Library/Caches/black/<version>/cache.<line-length>.<file-mode>.pickle`
420 - Linux:
421   `/home/<username>/.cache/black/<version>/cache.<line-length>.<file-mode>.pickle`
422
423 `file-mode` is an int flag that determines whether the file was formatted as 3.6+ only,
424 as .pyi, and whether string normalization was omitted.
425
426 To override the location of these files on macOS or Linux, set the environment variable
427 `XDG_CACHE_HOME` to your preferred location. For example, if you want to put the cache
428 in the directory you're running _Black_ from, set `XDG_CACHE_HOME=.cache`. _Black_ will
429 then write the above files to `.cache/black/<version>/`.
430
431 ## Used by
432
433 The following notable open-source projects trust _Black_ with enforcing a consistent
434 code style: pytest, tox, Pyramid, Django Channels, Hypothesis, attrs, SQLAlchemy,
435 Poetry, PyPA applications (Warehouse, Bandersnatch, Pipenv, virtualenv), pandas, Pillow,
436 every Datadog Agent Integration, Home Assistant.
437
438 The following organizations use _Black_: Facebook, Dropbox, Mozilla, Quora.
439
440 Are we missing anyone? Let us know.
441
442 ## Testimonials
443
444 **Dusty Phillips**,
445 [writer](https://smile.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Daps&field-keywords=dusty+phillips):
446
447 > _Black_ is opinionated so you don't have to be.
448
449 **Hynek Schlawack**, [creator of `attrs`](https://www.attrs.org/), core developer of
450 Twisted and CPython:
451
452 > An auto-formatter that doesn't suck is all I want for Xmas!
453
454 **Carl Meyer**, [Django](https://www.djangoproject.com/) core developer:
455
456 > At least the name is good.
457
458 **Kenneth Reitz**, creator of [`requests`](http://python-requests.org/) and
459 [`pipenv`](https://readthedocs.org/projects/pipenv/):
460
461 > This vastly improves the formatting of our code. Thanks a ton!
462
463 ## Show your style
464
465 Use the badge in your project's README.md:
466
467 ```markdown
468 [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
469 ```
470
471 Using the badge in README.rst:
472
473 ```
474 .. image:: https://img.shields.io/badge/code%20style-black-000000.svg
475     :target: https://github.com/psf/black
476 ```
477
478 Looks like this:
479 [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
480
481 ## License
482
483 MIT
484
485 ## Contributing to _Black_
486
487 In terms of inspiration, _Black_ is about as configurable as _gofmt_. This is
488 deliberate.
489
490 Bug reports and fixes are always welcome! However, before you suggest a new feature or
491 configuration knob, ask yourself why you want it. If it enables better integration with
492 some workflow, fixes an inconsistency, speeds things up, and so on - go for it! On the
493 other hand, if your answer is "because I don't like a particular formatting" then you're
494 not ready to embrace _Black_ yet. Such changes are unlikely to get accepted. You can
495 still try but prepare to be disappointed.
496
497 More details can be found in
498 [CONTRIBUTING](https://github.com/psf/black/blob/master/CONTRIBUTING.md).
499
500 ## Change log
501
502 The log's become rather long. It moved to its own file.
503
504 See [CHANGES](https://github.com/psf/black/blob/master/CHANGES.md).
505
506 ## Authors
507
508 Glued together by [Łukasz Langa](mailto:lukasz@langa.pl).
509
510 Maintained with [Carol Willing](mailto:carolcode@willingconsulting.com),
511 [Carl Meyer](mailto:carl@oddbird.net),
512 [Jelle Zijlstra](mailto:jelle.zijlstra@gmail.com),
513 [Mika Naylor](mailto:mail@autophagy.io),
514 [Zsolt Dollenstein](mailto:zsol.zsol@gmail.com), and
515 [Cooper Lees](mailto:me@cooperlees.com).
516
517 Multiple contributions by:
518
519 - [Abdur-Rahmaan Janhangeer](mailto:arj.python@gmail.com)
520 - [Adam Johnson](mailto:me@adamj.eu)
521 - [Adam Williamson](mailto:adamw@happyassassin.net)
522 - [Alexander Huynh](mailto:github@grande.coffee)
523 - [Alex Vandiver](mailto:github@chmrr.net)
524 - [Allan Simon](mailto:allan.simon@supinfo.com)
525 - Anders-Petter Ljungquist
526 - [Andrew Thorp](mailto:andrew.thorp.dev@gmail.com)
527 - [Andrew Zhou](mailto:andrewfzhou@gmail.com)
528 - [Andrey](mailto:dyuuus@yandex.ru)
529 - [Andy Freeland](mailto:andy@andyfreeland.net)
530 - [Anthony Sottile](mailto:asottile@umich.edu)
531 - [Arjaan Buijk](mailto:arjaan.buijk@gmail.com)
532 - [Arnav Borbornah](mailto:arnavborborah11@gmail.com)
533 - [Artem Malyshev](mailto:proofit404@gmail.com)
534 - [Asger Hautop Drewsen](mailto:asgerdrewsen@gmail.com)
535 - [Augie Fackler](mailto:raf@durin42.com)
536 - [Aviskar KC](mailto:aviskarkc10@gmail.com)
537 - Batuhan Taşkaya
538 - [Benjamin Wohlwend](mailto:bw@piquadrat.ch)
539 - [Benjamin Woodruff](mailto:github@benjam.info)
540 - [Bharat Raghunathan](mailto:bharatraghunthan9767@gmail.com)
541 - [Brandt Bucher](mailto:brandtbucher@gmail.com)
542 - [Brett Cannon](mailto:brett@python.org)
543 - [Bryan Bugyi](mailto:bryan.bugyi@rutgers.edu)
544 - [Bryan Forbes](mailto:bryan@reigndropsfall.net)
545 - [Calum Lind](mailto:calumlind@gmail.com)
546 - [Charles](mailto:peacech@gmail.com)
547 - Charles Reid
548 - [Christian Clauss](mailto:cclauss@bluewin.ch)
549 - [Christian Heimes](mailto:christian@python.org)
550 - [Chuck Wooters](mailto:chuck.wooters@microsoft.com)
551 - Codey Oxley
552 - [Cong](mailto:congusbongus@gmail.com)
553 - [Cooper Ry Lees](mailto:me@cooperlees.com)
554 - [Dan Davison](mailto:dandavison7@gmail.com)
555 - [Daniel Hahler](mailto:github@thequod.de)
556 - [Daniel M. Capella](mailto:polycitizen@gmail.com)
557 - Daniele Esposti
558 - [David Hotham](mailto:david.hotham@metaswitch.com)
559 - [David Lukes](mailto:dafydd.lukes@gmail.com)
560 - [David Szotten](mailto:davidszotten@gmail.com)
561 - [Denis Laxalde](mailto:denis@laxalde.org)
562 - [Douglas Thor](mailto:dthor@transphormusa.com)
563 - dylanjblack
564 - [Eli Treuherz](mailto:eli@treuherz.com)
565 - [Emil Hessman](mailto:emil@hessman.se)
566 - [Felix Kohlgrüber](mailto:felix.kohlgrueber@gmail.com)
567 - [Florent Thiery](mailto:fthiery@gmail.com)
568 - Francisco
569 - [Giacomo Tagliabue](mailto:giacomo.tag@gmail.com)
570 - [Greg Gandenberger](mailto:ggandenberger@shoprunner.com)
571 - [Gregory P. Smith](mailto:greg@krypto.org)
572 - Gustavo Camargo
573 - hauntsaninja
574 - [Heaford](mailto:dan@heaford.com)
575 - [Hugo Barrera](mailto::hugo@barrera.io)
576 - Hugo van Kemenade
577 - [Hynek Schlawack](mailto:hs@ox.cx)
578 - [Ivan Katanić](mailto:ivan.katanic@gmail.com)
579 - [Jakub Kadlubiec](mailto:jakub.kadlubiec@skyscanner.net)
580 - [Jakub Warczarek](mailto:jakub.warczarek@gmail.com)
581 - [Jan Hnátek](mailto:jan.hnatek@gmail.com)
582 - [Jason Fried](mailto:me@jasonfried.info)
583 - [Jason Friedland](mailto:jason@friedland.id.au)
584 - [jgirardet](mailto:ijkl@netc.fr)
585 - Jim Brännlund
586 - [Jimmy Jia](mailto:tesrin@gmail.com)
587 - [Joe Antonakakis](mailto:jma353@cornell.edu)
588 - [Jon Dufresne](mailto:jon.dufresne@gmail.com)
589 - [Jonas Obrist](mailto:ojiidotch@gmail.com)
590 - [Jonty Wareing](mailto:jonty@jonty.co.uk)
591 - [Jose Nazario](mailto:jose.monkey.org@gmail.com)
592 - [Joseph Larson](mailto:larson.joseph@gmail.com)
593 - [Josh Bode](mailto:joshbode@fastmail.com)
594 - [Josh Holland](mailto:anowlcalledjosh@gmail.com)
595 - [José Padilla](mailto:jpadilla@webapplicate.com)
596 - [Juan Luis Cano Rodríguez](mailto:hello@juanlu.space)
597 - [kaiix](mailto:kvn.hou@gmail.com)
598 - [Katie McLaughlin](mailto:katie@glasnt.com)
599 - Katrin Leinweber
600 - [Keith Smiley](mailto:keithbsmiley@gmail.com)
601 - [Kenyon Ralph](mailto:kenyon@kenyonralph.com)
602 - [Kevin Kirsche](mailto:Kev.Kirsche+GitHub@gmail.com)
603 - [Kyle Hausmann](mailto:kyle.hausmann@gmail.com)
604 - [Kyle Sunden](mailto:sunden@wisc.edu)
605 - Lawrence Chan
606 - [Linus Groh](mailto:mail@linusgroh.de)
607 - [Loren Carvalho](mailto:comradeloren@gmail.com)
608 - [Luka Sterbic](mailto:luka.sterbic@gmail.com)
609 - [LukasDrude](mailto:mail@lukas-drude.de)
610 - Mahmoud Hossam
611 - Mariatta
612 - [Matt VanEseltine](mailto:vaneseltine@gmail.com)
613 - [Matthew Clapp](mailto:itsayellow+dev@gmail.com)
614 - [Matthew Walster](mailto:matthew@walster.org)
615 - Max Smolens
616 - [Michael Aquilina](mailto:michaelaquilina@gmail.com)
617 - [Michael Flaxman](mailto:michael.flaxman@gmail.com)
618 - [Michael J. Sullivan](mailto:sully@msully.net)
619 - [Michael McClimon](mailto:michael@mcclimon.org)
620 - [Miguel Gaiowski](mailto:miggaiowski@gmail.com)
621 - [Mike](mailto:roshi@fedoraproject.org)
622 - [mikehoyio](mailto:mikehoy@gmail.com)
623 - [Min ho Kim](mailto:minho42@gmail.com)
624 - [Miroslav Shubernetskiy](mailto:miroslav@miki725.com)
625 - MomIsBestFriend
626 - [Nathan Goldbaum](mailto:ngoldbau@illinois.edu)
627 - [Nathan Hunt](mailtoneighthan.hunt@gmail.com)
628 - [Neraste](mailto:neraste.herr10@gmail.com)
629 - [Nikolaus Waxweiler](mailto:madigens@gmail.com)
630 - [Ofek Lev](mailto:ofekmeister@gmail.com)
631 - [Osaetin Daniel](mailto:osaetindaniel@gmail.com)
632 - [otstrel](mailto:otstrel@gmail.com)
633 - [Pablo Galindo](mailto:Pablogsal@gmail.com)
634 - [Paul Ganssle](mailto:p.ganssle@gmail.com)
635 - [Paul Meinhardt](mailto:mnhrdt@gmail.com)
636 - [Peter Bengtsson](mailto:mail@peterbe.com)
637 - [Peter Stensmyr](mailto:peter.stensmyr@gmail.com)
638 - pmacosta
639 - [Quentin Pradet](mailto:quentin@pradet.me)
640 - [Ralf Schmitt](mailto:ralf@systemexit.de)
641 - [Ramón Valles](mailto:mroutis@protonmail.com)
642 - [Richard Fearn](mailto:richardfearn@gmail.com)
643 - Richard Si
644 - [Rishikesh Jha](mailto:rishijha424@gmail.com)
645 - [Rupert Bedford](mailto:rupert@rupertb.com)
646 - Russell Davis
647 - [Rémi Verschelde](mailto:rverschelde@gmail.com)
648 - [Sami Salonen](mailto:sakki@iki.fi)
649 - [Samuel Cormier-Iijima](mailto:samuel@cormier-iijima.com)
650 - [Sanket Dasgupta](mailto:sanketdasgupta@gmail.com)
651 - Sergi
652 - [Scott Stevenson](mailto:scott@stevenson.io)
653 - Shantanu
654 - [shaoran](mailto:shaoran@sakuranohana.org)
655 - [Shinya Fujino](mailto:shf0811@gmail.com)
656 - springstan
657 - [Stavros Korokithakis](mailto:hi@stavros.io)
658 - [Stephen Rosen](mailto:sirosen@globus.org)
659 - [Steven M. Vascellaro](mailto:S.Vascellaro@gmail.com)
660 - [Sunil Kapil](mailto:snlkapil@gmail.com)
661 - [Sébastien Eustace](mailto:sebastien.eustace@gmail.com)
662 - [Tal Amuyal](mailto:TalAmuyal@gmail.com)
663 - [Terrance](mailto:git@terrance.allofti.me)
664 - [Thom Lu](mailto:thomas.c.lu@gmail.com)
665 - [Thomas Grainger](mailto:tagrain@gmail.com)
666 - [Tim Gates](mailto:tim.gates@iress.com)
667 - [Tim Swast](mailto:swast@google.com)
668 - [Timo](mailto:timo_tk@hotmail.com)
669 - Toby Fleming
670 - [Tom Christie](mailto:tom@tomchristie.com)
671 - [Tony Narlock](mailto:tony@git-pull.com)
672 - [Tsuyoshi Hombashi](mailto:tsuyoshi.hombashi@gmail.com)
673 - [Tushar Chandra](mailto:tusharchandra2018@u.northwestern.edu)
674 - [Tzu-ping Chung](mailto:uranusjr@gmail.com)
675 - [Utsav Shah](mailto:ukshah2@illinois.edu)
676 - utsav-dbx
677 - vezeli
678 - [Ville Skyttä](mailto:ville.skytta@iki.fi)
679 - [Vishwas B Sharma](mailto:sharma.vishwas88@gmail.com)
680 - [Vlad Emelianov](mailto:volshebnyi@gmail.com)
681 - [williamfzc](mailto:178894043@qq.com)
682 - [wouter bolsterlee](mailto:wouter@bolsterl.ee)
683 - Yazdan
684 - [Yngve Høiseth](mailto:yngve@hoiseth.net)
685 - [Yurii Karabas](mailto:1998uriyyo@gmail.com)