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
This commit is contained in:
Vlad Zahorodnii 2020-03-18 11:36:21 +02:00
parent a273ec2bc3
commit e7babb3e97

View file

@ -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$)"
]
}
}
}