From 68d13679138f5ea90319aa983cdd42645714cb8e Mon Sep 17 00:00:00 2001 From: Kotaro Yoshimoto Date: Wed, 14 Feb 2024 17:47:49 +0900 Subject: [PATCH 1/4] ignore imageio and mimsave from python files --- .cspell.json | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.cspell.json b/.cspell.json index 98bceb95..a187322b 100644 --- a/.cspell.json +++ b/.cspell.json @@ -245,8 +245,16 @@ { "filename": "**/{*.js,*.ts}", "ignoreRegExpList": [ - "owner: .*$", - "repo:: .*$" + "imageio", + "mimsave" + ] + }, + { + "filename": "**/{*.py}", + "ignoreRegExpList": [ + "Copyright (\\(c\\))?.+$", + "FIXME( )?\\(.+?\\)", + "TODO( )?\\(.+?\\)" ] } ], From 9c5cef6101c63567164931b9615540b44731fa6d Mon Sep 17 00:00:00 2001 From: Kotaro Yoshimoto Date: Wed, 14 Feb 2024 17:52:14 +0900 Subject: [PATCH 2/4] fix --- .cspell.json | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.cspell.json b/.cspell.json index a187322b..d43b14a2 100644 --- a/.cspell.json +++ b/.cspell.json @@ -245,16 +245,15 @@ { "filename": "**/{*.js,*.ts}", "ignoreRegExpList": [ - "imageio", - "mimsave" + "owner: .*$", + "repo:: .*$" ] }, { "filename": "**/{*.py}", "ignoreRegExpList": [ - "Copyright (\\(c\\))?.+$", - "FIXME( )?\\(.+?\\)", - "TODO( )?\\(.+?\\)" + "imageio", + "mimsave" ] } ], From 8f92a96b222bfe850cdcd2703768cae142e53611 Mon Sep 17 00:00:00 2001 From: Kotaro Yoshimoto Date: Wed, 14 Feb 2024 18:21:57 +0900 Subject: [PATCH 3/4] Update .cspell.json --- .cspell.json | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.cspell.json b/.cspell.json index d43b14a2..d6e2cd4c 100644 --- a/.cspell.json +++ b/.cspell.json @@ -91,7 +91,9 @@ "ignoreRegExpList": [ "author(_email)?=.*$", "linewidth", - "maintainer(_email)?=.*$" + "maintainer(_email)?=.*$", + "imageio", + "mimsave" ] }, { @@ -248,13 +250,6 @@ "owner: .*$", "repo:: .*$" ] - }, - { - "filename": "**/{*.py}", - "ignoreRegExpList": [ - "imageio", - "mimsave" - ] } ], "flagWords": [ From 2be17ddb27718ab96186ce781357f33d24d668b5 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 09:22:04 +0000 Subject: [PATCH 4/4] ci(pre-commit): autofix --- .cspell.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cspell.json b/.cspell.json index d6e2cd4c..10138788 100644 --- a/.cspell.json +++ b/.cspell.json @@ -90,9 +90,9 @@ "filename": "**/*.py", "ignoreRegExpList": [ "author(_email)?=.*$", + "imageio", "linewidth", "maintainer(_email)?=.*$", - "imageio", "mimsave" ] },