]> git.madduck.net Git - etc/vim.git/commitdiff

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:

Fix Boolean values in pyproject.toml config (#1410)
authorPaul Meinhardt <mnhrdt@gmail.com>
Wed, 13 May 2020 19:51:04 +0000 (21:51 +0200)
committerGitHub <noreply@github.com>
Wed, 13 May 2020 19:51:04 +0000 (12:51 -0700)
Boolean values use lowercase identifiers in TOML.
https://github.com/toml-lang/toml#user-content-boolean

docs/compatible_configs.md

index b182f57a9f3ca026acd76385b3051aabc0b0eff4..e8267435323adf26c797217398f8cc5a32507b48 100644 (file)
@@ -96,9 +96,9 @@ line_length = 88
 ```toml
 [tool.isort]
 multi_line_output = 3
-include_trailing_comma = True
+include_trailing_comma = true
 force_grid_wrap = 0
-use_parentheses = True
+use_parentheses = true
 line_length = 88
 ```