X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/283a5d53a8d57e8e186a08c9fbf249e1fbe7bc94..ae8ea510e3078c929e92257f1809e4760c540d87:/README.md diff --git a/README.md b/README.md index c548ce4..3052d63 100644 --- a/README.md +++ b/README.md @@ -572,22 +572,23 @@ line-length = 88 py36 = true include = '\.pyi?$' exclude = ''' -/( - \.eggs - | \.git - | \.hg - | \.mypy_cache - | \.tox - | \.venv - | _build - | buck-out - | build - | dist - - # The following are specific to Black, you probably don't want those. - | blib2to3 - | tests/data -)/ + +( + /( + \.eggs # exclude a few common directories in the + | \.git # root of the project + | \.hg + | \.mypy_cache + | \.tox + | \.venv + | _build + | buck-out + | build + | dist + )/ + | foo.py # also separately exclude a file named foo.py in + # the root of the project +) ''' ```