ConjuringCoffee
ConjuringCoffee
I'd like to request a new rule on automatically making existing ABAP Doc synchronized if the text is short enough. Example: ```abap "! This is my documentation CLASS lcl_example DEFINITION...
Hi Jörg-Michael, I have a low-priority usability request for you regarding the code comparison view: Would it be possible to indicate which code is "before" and which is "after" view?...
Hi Jörg-Michael, happy new year to you! 😄 I'm back with another feature request / bug report. I'd like to automatically remove unnecessary line breaks at the end of documents....
Hi Jörg-Michael, I'd like to request a new rule to align multi-line string concatenation. 🙂 Clean ABAP has the rule "Use | to assemble text", but that doesn't make the...
Hi Jörg-Michael, I found an example that isn't covered by the rule. Is it simply not covered at all, or did I overlook another rule that should have done this?...
Hi Jörg-Michael, the rule "Align logical expressions" doesn't always produce results that I find pleasant to look at. Here's an example of an `IF` consisting of two conditions connected with...
Hi Jörg-Michael, thanks for adding support for `SELECT` statements! While I was testing, I noticed something fishy going on with the display of the "rules used in current selection". Example:...
Hi Jörg-Michael, I'd like to request a new rule to standardize the order of class components in the class definition. Clean Code suggests the following order: - Static constants -...
Hi Jörg-Michael, rule "Align METHODS declarations" doesn't remove superfluous spaces between `TYPE` and the type name. Would it be possible to add this? Example: ```abap CLASS lcl_example DEFINITION CREATE PRIVATE....
Hi Jörg-Michael, to avoid problems like in #207 I'd like to request a rule that moves logic directly after a condition to the next line. Example: ```abap DATA example TYPE...