From 04c9a8329a3a7257e295b2b23946d17283c4b1af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sat, 29 May 2021 09:23:33 +0200 Subject: [PATCH] misra: Removed some rules from getCppcheckRules() because those do not exist --- addons/misra.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/misra.py b/addons/misra.py index 9d177568c..281d8dec9 100755 --- a/addons/misra.py +++ b/addons/misra.py @@ -919,8 +919,8 @@ def getAddonRules(): def getCppcheckRules(): """Returns list of rules handled by cppcheck.""" - return ['1.3', '2.1', '2.2', '2.4', '2.6', '5.3', '8.3', '12.2', - '13.2', '13.6', '14.3', '17.5', '18.1', '18.2', '18.3', + return ['1.3', '2.1', '2.2', '2.6', '5.3', '8.3', + '13.2', '13.6', '17.5', '18.1', '18.2', '18.3', '18.6', '20.6', '22.1', '22.2', '22.4', '22.6']