Hi,
We use sonarsource Version: 1.21.0. in our azure pipeline and it works great. However, I find myself spending time repeatedly tagging the same issue as false positive.
Either the logic around if
statement in python forgets about line lengths or is unaware how the walrus operator works.
if is_first_condition and is_second_condition:
if re.search(specific_pattern, text_variable, flags=re.IGNORECASE):
Merging these two lines into a single line will a) make it less readable and b) break the line length limit. However, sonarcloud keeps recommending to merge these lines.
The second false positive is around the walrus operator. It is not possible to chain a walrus operator with other logical conditions (code will not compile). However, sonarcloud keeps recommending that I merge if statments.
if match:
if match2 := re.search(pattern, match.group()):
Here two examples:
Long Lines
Walrus Operator
Here the advice provided: