From 23ccaf58951779036d1ec0bc9ce777afe734cdf4 Mon Sep 17 00:00:00 2001 From: Kasper Date: Mon, 5 May 2025 00:29:22 +0300 Subject: [PATCH] add some emacs vars for cppcheck --- .dir-locals.el | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .dir-locals.el diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..d5c2c6f --- /dev/null +++ b/.dir-locals.el @@ -0,0 +1,6 @@ +;;; Directory Local Variables +;;; For more information see (info "(emacs) Directory Variables") + +((c-mode . ((flycheck-cppcheck-standards . ("c11")) + (flycheck-cppcheck-checks . ("all")) + (flycheck-cppcheck-suppressions . ("unusedFunction")))))