From 22cc0515c98e58fc56a4bd82b6d6dbbcdfa71fcb Mon Sep 17 00:00:00 2001 From: Kurtis Rader Date: Wed, 4 May 2016 16:49:06 -0700 Subject: another oclint rule to ignore --- .oclint | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to '.oclint') diff --git a/.oclint b/.oclint index 4e9870e6..4b5550ad 100644 --- a/.oclint +++ b/.oclint @@ -8,6 +8,7 @@ rule-configurations: value: 100 disable-rules: + # # A few instances of "useless parentheses" errors are meaningful. Mostly # in the context of the `return` statement. Unfortunately the vast # majority would result in removing parentheses that decreases @@ -16,4 +17,13 @@ disable-rules: # # Also, some macro expansions, such as FD_SET(), trigger this warning and # we don't want to suppress each of those individually. + # - UselessParentheses + # + # OCLint wants variable names to be at least three characters in length. + # Which would be fine if it supported a reasonable set of exceptions + # (e.g., "i", "j", "k") and allowed adding additional exceptions to match + # conventions employed by a project. Since it doesn't, and thus generates + # a lot of really annoying warnings, we're going to disable this rule. + # + - ShortVariableName -- cgit v1.2.3