Skip to content

Commit

Permalink
Merge pull request #232 from joclement/renovate/vim-pack-plugins-star…
Browse files Browse the repository at this point in the history
…t-black-digest

chore(deps): update vim/pack/plugins/start/black digest to 53a2190
  • Loading branch information
joclement authored Nov 1, 2024
2 parents a807aa7 + b821438 commit 266ef7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vim/pack/plugins/start/black
Submodule black updated 89 files
+0 −1 .github/dependabot.yml
+2 −2 .github/workflows/diff_shades.yml
+5 −3 .github/workflows/doc.yml
+2 −1 .github/workflows/fuzz.yml
+2 −1 .github/workflows/lint.yml
+7 −4 .github/workflows/pypi_upload.yml
+1 −1 .github/workflows/release_tests.yml
+5 −4 .github/workflows/test.yml
+1 −1 .github/workflows/upload_binary.yml
+1 −1 .pre-commit-config.yaml
+71 −12 CHANGES.md
+1 −1 README.md
+1 −1 autoload/black.vim
+6 −5 docs/faq.md
+1 −1 docs/getting_started.md
+1 −1 docs/integrations/editors.md
+6 −1 docs/integrations/github_actions.md
+2 −2 docs/integrations/source_version_control.md
+1 −1 docs/requirements.txt
+2 −0 docs/the_black_code_style/future_style.md
+7 −7 docs/usage_and_configuration/the_basics.md
+6 −5 gallery/gallery.py
+4 −5 plugin/black.vim
+13 −30 pyproject.toml
+1 −1 scripts/generate_schema.py
+4 −4 scripts/make_width_table.py
+67 −83 src/black/__init__.py
+2 −2 src/black/_width_table.py
+8 −7 src/black/brackets.py
+9 −9 src/black/cache.py
+8 −7 src/black/comments.py
+4 −3 src/black/concurrency.py
+3 −2 src/black/debug.py
+21 −28 src/black/files.py
+59 −12 src/black/handle_ipynb_magics.py
+71 −54 src/black/linegen.py
+17 −27 src/black/lines.py
+13 −7 src/black/mode.py
+15 −18 src/black/nodes.py
+2 −2 src/black/output.py
+17 −9 src/black/parsing.py
+16 −15 src/black/ranges.py
+3 −2 src/black/resources/black.schema.json
+1 −6 src/black/schema.py
+5 −4 src/black/strings.py
+38 −54 src/black/trans.py
+2 −3 src/blackd/__init__.py
+3 −13 src/blackd/middlewares.py
+7 −6 src/blib2to3/pgen2/driver.py
+15 −15 src/blib2to3/pgen2/grammar.py
+2 −3 src/blib2to3/pgen2/literals.py
+13 −24 src/blib2to3/pgen2/parse.py
+21 −31 src/blib2to3/pgen2/pgen.py
+2 −2 src/blib2to3/pgen2/token.py
+23 −32 src/blib2to3/pgen2/tokenize.py
+29 −39 src/blib2to3/pytree.py
+0 −1 tests/data/cases/context_managers_38.py
+0 −1 tests/data/cases/context_managers_39.py
+0 −1 tests/data/cases/context_managers_autodetect_39.py
+1 −0 tests/data/cases/funcdef_return_type_trailing_comma.py
+130 −0 tests/data/cases/function_trailing_comma.py
+0 −1 tests/data/cases/pep_570.py
+0 −1 tests/data/cases/pep_572.py
+0 −1 tests/data/cases/pep_572_py39.py
+0 −1 tests/data/cases/pep_572_remove_parens.py
+10 −0 tests/data/cases/pep_701.py
+8 −0 tests/data/cases/preview_pep646_typed_star_arg_type_var_tuple.py
+0 −3 tests/data/cases/python37.py
+0 −3 tests/data/cases/python38.py
+0 −2 tests/data/cases/python39.py
+0 −1 tests/data/cases/remove_with_brackets.py
+3 −0 tests/data/ignore_directory_gitignore_tests/.gitignore
+0 −0 tests/data/ignore_directory_gitignore_tests/abc.py
+0 −0 tests/data/ignore_directory_gitignore_tests/large_ignored_dir_two/a.py
+0 −0 tests/data/ignore_directory_gitignore_tests/large_ignored_dir_two/inner/b.py
+0 −0 tests/data/ignore_directory_gitignore_tests/large_ignored_dir_two/inner2/c.py
+0 −0 tests/data/ignore_directory_gitignore_tests/large_ignored_dir_two/inner3/d.py
+0 −0 tests/data/ignore_directory_gitignore_tests/z.py
+6 −6 tests/optional.py
+60 −29 tests/test_black.py
+6 −34 tests/test_blackd.py
+3 −2 tests/test_docs.py
+5 −2 tests/test_format.py
+34 −2 tests/test_ipynb.py
+6 −8 tests/test_ranges.py
+119 −0 tests/test_tokenize.py
+1 −3 tests/test_trans.py
+15 −14 tests/util.py
+1 −1 tox.ini

0 comments on commit 266ef7d

Please sign in to comment.