X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/3f68af9813542a5e277b7a51b316644241c372d7..dc71922c768e543c9c3bbb1db5ea6d7fa801a814:/.vim/bundle/black/.pre-commit-hooks.yaml?ds=sidebyside diff --git a/.vim/bundle/black/.pre-commit-hooks.yaml b/.vim/bundle/black/.pre-commit-hooks.yaml new file mode 100644 index 0000000..1379570 --- /dev/null +++ b/.vim/bundle/black/.pre-commit-hooks.yaml @@ -0,0 +1,18 @@ +- id: black + name: black + description: "Black: The uncompromising Python code formatter" + entry: black + language: python + minimum_pre_commit_version: 2.9.2 + require_serial: true + types_or: [python, pyi] +- id: black-jupyter + name: black-jupyter + description: + "Black: The uncompromising Python code formatter (with Jupyter Notebook support)" + entry: black + language: python + minimum_pre_commit_version: 2.9.2 + require_serial: true + types_or: [python, pyi, jupyter] + additional_dependencies: [".[jupyter]"]