code pal for ABAP > Comment Position
This check searches for "Quote comments" which are not indented along with the statements they belong to.
You should indent the comments along with the statements they are commenting.
There is no exception for this check since it works as an indicator only. Thus, it is also not possible to suppress its findings.
Before the check:
" delegate pattern
output = calculate_result( input ).
output = calculate_result( input ). " delegate pattern
After the check:
" delegate pattern
output = calculate_result( input ).