From 8bc8be4fde443a5ae360694f475805bfca725a1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20D=C3=ADaz=20Gonz=C3=A1lez?= Date: Tue, 14 Mar 2023 15:35:30 +0000 Subject: [PATCH] [web] Stop ignoring compound words when checking spell Because it does not work as well as expected. E.g., "Hardaware" and "Needfed" are considered right. See https://github.com/streetsidesoftware/cspell/issues/317 and https://github.com/streetsidesoftware/cspell/labels/allowCompoundWords --- web/cspell.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/cspell.json b/web/cspell.json index d3b690f1d..c3568c44d 100644 --- a/web/cspell.json +++ b/web/cspell.json @@ -1,7 +1,7 @@ { "version": "0.2", "language": "en", - "allowCompoundWords": true, + "allowCompoundWords": false, "ignorePaths": [ "src/lib/cockpit.js", "src/lib/cockpit-po-plugin.js"