83 lines
2.9 KiB
Plaintext
83 lines
2.9 KiB
Plaintext
// MISRA C-2012 Rules
|
|
|
|
{
|
|
version : "2.0",
|
|
standard : "c2012",
|
|
title: "Coverity MISRA Configuration",
|
|
deviations : [
|
|
// Disable the following rules.
|
|
{
|
|
deviation: "Directive 4.5",
|
|
reason: "Allow names that MISRA considers ambiguous."
|
|
},
|
|
{
|
|
deviation: "Directive 4.7",
|
|
reason: "Some api doesn't return error code, such as strtol()."
|
|
},
|
|
{
|
|
deviation: "Directive 4.8",
|
|
reason: "Allow inclusion of unused types. Header files for a specific port, which are needed by all files, may define types that are not used by a specific file."
|
|
},
|
|
{
|
|
deviation: "Directive 4.9",
|
|
reason: "Allow inclusion of function like macros. Logging is done using function like macros."
|
|
},
|
|
{
|
|
deviation: "Rule 2.4",
|
|
reason: "Allow unused tags. Some compilers warn if types are not tagged."
|
|
},
|
|
{
|
|
deviation: "Rule 2.5",
|
|
reason: "Allow unused macros. Library headers may define macros intended for the application's use, but not used by a specific file."
|
|
},
|
|
{
|
|
deviation: "Rule 3.1",
|
|
reason: "Allow nested comments. Documentation blocks contain comments for example code."
|
|
},
|
|
{
|
|
deviation: "Rule 11.5",
|
|
reason: "Allow casts from void *. Contexts are passed as void * and must be cast to the correct data type before use."
|
|
},
|
|
{
|
|
deviation: "Rule 21.1",
|
|
reason: "Allow use of all names."
|
|
},
|
|
{
|
|
deviation: "Rule 21.2",
|
|
reason: "Allow use of all names."
|
|
},
|
|
{
|
|
deviation: "Rule 21.3",
|
|
reason: "This library makes use of malloc. Allow use of malloc."
|
|
},
|
|
{
|
|
deviation: "Rule 8.7",
|
|
reason: "API functions are not used by library. They must be externally visible in order to be used by the application."
|
|
},
|
|
{
|
|
deviation: "Rule 8.9",
|
|
reason: "Look up table is maintained."
|
|
},
|
|
{
|
|
deviation: "Rule 8.13",
|
|
reason: "The pointer may be updated in some cases."
|
|
},
|
|
{
|
|
deviation: "Rule 22.8",
|
|
reason: "The errno variable must be \"zero\" before calling strtol function."
|
|
},
|
|
{
|
|
deviation: "Rule 22.9",
|
|
reason: "The errno must be tested after strtol function is called."
|
|
},
|
|
{
|
|
deviation: "Rule 21.13",
|
|
reason: "isspace is a standard library function and we cannot control it."
|
|
},
|
|
{
|
|
deviation: "Rule 11.8",
|
|
reason: "The input const char * pString will be assgined to local variable char * ptrChar, which will be iterated to read the value."
|
|
}
|
|
]
|
|
}
|