From 9b9e86b7babeb29134453486119d4fe2d326c3f6 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Fri, 27 Jan 2023 20:44:24 -0500 Subject: [PATCH 1/3] Add .codespellrc with our skips etc --- .codespellrc | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .codespellrc diff --git a/.codespellrc b/.codespellrc new file mode 100644 index 00000000..4cf7f14b --- /dev/null +++ b/.codespellrc @@ -0,0 +1,4 @@ +[codespell] +skip = .venv,venvs,.git,build,*.egg-info,*.lock,.asv,.mypy_cache,.tox,fixtures,_version.py,*.pem +# ignore-words-list = +# exclude-file = From a5d7a1b938ebe05417b8211a7b786b40bef1ae63 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Fri, 27 Jan 2023 20:45:24 -0500 Subject: [PATCH 2/3] git ignore .idea/ and venvs/ --- .codespellrc | 2 +- .gitignore | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.codespellrc b/.codespellrc index 4cf7f14b..ead154ef 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,4 +1,4 @@ [codespell] -skip = .venv,venvs,.git,build,*.egg-info,*.lock,.asv,.mypy_cache,.tox,fixtures,_version.py,*.pem +skip = .venv,venvs,.git,build,*.egg-info,*.lock,.asv,.mypy_cache,.tox,fixtures,_version.py,*.pem,versioneer.py # ignore-words-list = # exclude-file = diff --git a/.gitignore b/.gitignore index e0bf68a3..a5f29928 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,5 @@ docs/build docs/source/generated build/ dist/ +.idea/ +venvs/ From 6787e88af9d56ca2f0fe72b723932c02e5492909 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Wed, 22 Mar 2023 08:32:14 -0400 Subject: [PATCH 3/3] [DATALAD RUNCMD] run codespell throughout === Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^ --- _datalad_buildsupport/formatters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_datalad_buildsupport/formatters.py b/_datalad_buildsupport/formatters.py index 5ac01de8..a88a99bd 100644 --- a/_datalad_buildsupport/formatters.py +++ b/_datalad_buildsupport/formatters.py @@ -75,7 +75,7 @@ def _mk_title(self, prog): def _mk_name(self, prog, desc): """ - this method is in consitent with others ... it relies on + this method is in consistent with others ... it relies on distribution """ desc = desc.splitlines()[0] if desc else 'it is in the name'