formatter
Here are 1,309 public repositories matching this topic...
-
Updated
Jul 3, 2022 - Python
Given the invalid command
let x/x
bash rightfully complains:
$ let x/x
bash: let: x/x: division by 0 (error token is "x")
but gosh panics:
$ go run cmd/gosh/main.go
$ let x/x
panic: runtime error: integer divide by zero
goroutine 1 [running]:
mvdan.cc/sh/v3/expand.binArit(0x111540?, 0x589de0?, 0xc000122f28?)
/home/dank/src/sh/expand/arith.go:173 +0x245
mv
Good evening!
This is a feature request (AFAIKT there's no configuration option or duplicate issue for this).
In many cases where nightly rustfmt is applied by CI in public repositories, users will often run cargo fmt themselves directly or through their editor causing warnings arising from using the stable rustfmt where the nightly is required. E.g.:
$ cargo fmt
Warning
-
Updated
Jul 22, 2022 - TypeScript
-
Updated
Apr 20, 2022 - Python
-
Updated
Jul 25, 2022 - TypeScript
-
Updated
Jul 22, 2022 - JavaScript
-
Updated
Jul 19, 2022 - Java
-
Updated
Jul 21, 2022 - Ruby
-
Updated
Jun 11, 2022 - Vim script
-
Updated
Nov 14, 2021 - Swift
GDPR compliance
-
Updated
Jul 20, 2022 - PHP
-
Updated
Jul 20, 2022 - Rust
-
Updated
Jul 11, 2022 - C#
-
Updated
Jul 10, 2022 - Haskell
-
Updated
Jul 25, 2022 - TypeScript
-
Updated
Jan 26, 2022 - TypeScript
-
Updated
Jul 20, 2022 - JavaScript
Update README.md
We need to update our README.md file before the 1.0 release.
Improve this page
Add a description, image, and links to the formatter topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the formatter topic, visit your repo's landing page and select "manage topics."
Perhaps we should document this issue in the FAQ? Using pre-commit with Black is pretty common (and it's not always instantly clear it passes all of the files to the hook directly bypassing any file discovery the hook may implement). I'd suggest pre-commit's exclude configurations first, and then black's force-exclude.
_Originally posted by @ichard26 in psf/black#3013