From 83b1b5d282271bc46b1df227c503a0e517740ebf Mon Sep 17 00:00:00 2001 From: Kurtis Rader Date: Fri, 8 Sep 2017 21:55:14 -0700 Subject: [PATCH] Tell `oclint` to ignore another idiom that is safe --- .oclint | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.oclint b/.oclint index 36d74b3c9..822aa2b33 100644 --- a/.oclint +++ b/.oclint @@ -87,3 +87,9 @@ disable-rules: # in fish source. # - BitwiseOperatorInConditional + # + # I don't think I've ever seen a case where assigning a value to a + # parameter inside the function body was unclear, let along dangerous or + # an error. This rule is therefore just noise. Disable this rule. + # + - ParameterReassignment