From 68d13679138f5ea90319aa983cdd42645714cb8e Mon Sep 17 00:00:00 2001 From: Kotaro Yoshimoto Date: Wed, 14 Feb 2024 17:47:49 +0900 Subject: [PATCH] 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( )?\\(.+?\\)" ] } ],