From 89defafa52c2a78293ffb142acc33b3a665ce35f Mon Sep 17 00:00:00 2001 From: "Jens A. Koch" Date: Thu, 20 Jun 2024 22:02:45 +0200 Subject: [PATCH] add more ignore regexp for header guards --- build-tools/cspell/cspell.config.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/build-tools/cspell/cspell.config.json b/build-tools/cspell/cspell.config.json index d960e12..908a004 100644 --- a/build-tools/cspell/cspell.config.json +++ b/build-tools/cspell/cspell.config.json @@ -70,9 +70,18 @@ { "name": "src-csgo-headers", "pattern": "SRC_CSGO_[A-Z]+_H_" + }, + { + "name": "src-csgostats-headers", + "pattern": "SRC_CSGOSTATS_[A-Z]+_H_" + }, + { + "name": "src-headers", + "pattern": "SRC_[A-Z]+_H_" } + ], "ignoreRegExpList": [ - "src-csgo-headers" + "src-headers", "src-csgo-headers", "src-csgostats-headers" ] } \ No newline at end of file