From e7babb3e9767aa55c140a237de75328b797d5379 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Wed, 18 Mar 2020 11:36:21 +0200 Subject: [PATCH] Drop .arclint file Summary: Lately, submitting patches has become very annoying because of cppcheck's false positive error messages. After doing some research, no reasonable solution have been found to this annoying problem so let's get rid of the .arclint file. If we've missed something during the code review, our CI will spot it. Although CI doesn't check spelling, we have other ways to detect typos, e.g. EBN. Reviewers: #kwin, apol Reviewed By: apol Subscribers: kwin Tags: #kwin Differential Revision: https://phabricator.kde.org/D28119 --- .arclint | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .arclint diff --git a/.arclint b/.arclint deleted file mode 100644 index 97f408b7f3..0000000000 --- a/.arclint +++ /dev/null @@ -1,43 +0,0 @@ -{ - "linters": { - "chmod": { - "type": "chmod" - }, - "cppcheck": { - "type": "cppcheck", - "include": [ - "(\\.cc$)", - "(\\.cpp$)", - "(\\.cxx$)", - "(\\.hh$)", - "(\\.hpp$)", - "(\\.hxx$)", - "(\\.h$)" - ], - "flags": [ - "--language=c++", - "--std=c++14" - ] - }, - "json": { - "type": "json", - "include": [ - "(^\\.arcconfig$)", - "(^\\.arclint$)", - "(\\.json$)" - ] - }, - "merge-conflict": { - "type": "merge-conflict" - }, - "spelling": { - "type": "spelling" - }, - "xml": { - "type": "xml", - "include": [ - "(\\.xml$)" - ] - } - } -}