From f801ec0b961fac6acee355c11ff27f38a9bd4a2b Mon Sep 17 00:00:00 2001 From: silverqx Date: Thu, 8 Aug 2024 20:30:04 +0200 Subject: [PATCH] added v before version number for Clazy --- .github/workflows/analyzers.yml | 4 ++-- tools/Lint-TinyORM.ps1 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/analyzers.yml b/.github/workflows/analyzers.yml index dbbdad438..c8865fdf5 100644 --- a/.github/workflows/analyzers.yml +++ b/.github/workflows/analyzers.yml @@ -228,12 +228,12 @@ jobs: 'qt6-qhash-signature,raw-environment-function,reserve-candidates,'\ 'signal-with-return-value,thread-with-slots,tr-non-literal,unneeded-cast,'\ 'use-chrono-in-qtimer,'\ - `# New in Clazy 1.11`\ + `# New in Clazy v1.11`\ 'unexpected-flag-enumerator-value,'\ 'use-arrow-operator-instead-of-data,'\ `# Checks Excluded from level2`\ 'no-qstring-allocations,'\ - `# New in Clazy 1.12`\ + `# New in Clazy v1.12`\ 'no-module-include,'\ 'sanitize-inline-keyword' diff --git a/tools/Lint-TinyORM.ps1 b/tools/Lint-TinyORM.ps1 index c00351f1f..0e4960ee8 100644 --- a/tools/Lint-TinyORM.ps1 +++ b/tools/Lint-TinyORM.ps1 @@ -277,12 +277,12 @@ if (-not $SkipClazy) { 'qt6-qhash-signature,raw-environment-function,reserve-candidates,' + 'signal-with-return-value,thread-with-slots,tr-non-literal,unneeded-cast,' + 'use-chrono-in-qtimer,' + - # New in Clazy 1.11 + # New in Clazy v1.11 'unexpected-flag-enumerator-value,' + 'use-arrow-operator-instead-of-data,' + # Checks Excluded from level2 'no-qstring-allocations,' + - # New in Clazy 1.12 + # New in Clazy v1.12 'no-module-include,' + 'sanitize-inline-keyword'