Space between parameters and arguments #509
christianbraeunlich
started this conversation in
New Rule
Replies: 1 comment
-
In addition to the example above, we could think about two more situations:
local procedure Test(Code: Code[10];Number: Integer) // Rule-LC000XX: Parameters must be separated by a space
begin
Message(Code, Number); // Rule-LC000XX: Arguments must be separated by a space
end;
local procedure Test(Code: Code[10];Number: Integer) // Rule-LC000XX: Parameters must be separated by a space
begin
Message(Code,
Number);
end; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, this rule may be a bit self-explanatory. The formatting also does it by default.
I see this sometimes in code reviews, so this rule would make a perfect fit.
See the following example:
Any additional thoughts on this? Is there already a rule I haven't found yet?
Beta Was this translation helpful? Give feedback.
All reactions