From 60f151d3d84e0d8a88ec7a1ab730556b17d8369d Mon Sep 17 00:00:00 2001 From: Duologic Date: Mon, 8 Jan 2024 14:02:53 +0100 Subject: [PATCH] chore: exclude generated files from spell check --- cspell.config.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/cspell.config.json b/cspell.config.json index 72380660b..8bc456d2f 100644 --- a/cspell.config.json +++ b/cspell.config.json @@ -28,7 +28,11 @@ "docs/**/*.yaml", "dashboards/**", "src/**", - "pkg/**" + "pkg/**", + "jsonnet/generator/jsonnetfile.json", + "jsonnet/generator/jsonnetfile.lock.json", + "jsonnet/generator/schema.json", + "jsonnet/zabbix-query-libsonnet/docs/**" ], "ignoreRegExpList": [ "import\\s*\\((.|[\r\n])*?\\)", @@ -73,6 +77,7 @@ "timeshift", "templatig", "lastvalue", - "typeahead" + "typeahead", + "jsonnet" ] }