From bdce4a27b6549b39663c85309fc79cd37e4605af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wolfgang=20Hu=C3=9F?= Date: Wed, 29 May 2024 19:32:08 +0200 Subject: [PATCH] Exclude 'Exemple' from textlint common-misspellings --- .textlintrc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.textlintrc.js b/.textlintrc.js index 382aa56..ad675f0 100644 --- a/.textlintrc.js +++ b/.textlintrc.js @@ -24,7 +24,7 @@ module.exports = { 'doubled-spaces': true, 'common-misspellings': { // Misspellings to be ignored (case-insensitive) - ignore: [], + ignore: ['Exemple'], }, 'write-good': false, 'apostrophe': true,