aboutsummaryrefslogtreecommitdiffhomepage
path: root/.oclint
diff options
context:
space:
mode:
Diffstat (limited to '.oclint')
-rw-r--r--.oclint15
1 files changed, 13 insertions, 2 deletions
diff --git a/.oclint b/.oclint
index cd68e182..4e9870e6 100644
--- a/.oclint
+++ b/.oclint
@@ -2,7 +2,18 @@ rules:
rule-configurations:
# This is the default value (as of the time I wrote this) but I'm making
# it explicit since it needs to agree with the value used by clang-format.
- # Thus, if we ever change the fish style to allow longer lines this should
- # be changed (as well as the corresponding clang-format config).
+ # Thus, if we ever change the fish style to allow longer or shorter lines
+ # this should be changed (as well as the corresponding .clang-format file).
- key: LONG_LINE
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
+ # readability. So we're going to ignore this warning and rely on humans to
+ # notice when the parentheses are truly not needed.
+ #
+ # Also, some macro expansions, such as FD_SET(), trigger this warning and
+ # we don't want to suppress each of those individually.
+ - UselessParentheses