Clean
|
ABAP |
ide.<ProgrammingLanguage>.Clean = true | false (default = false)
Clean ABAP is a programming method that applies the principles of "Clean Code" to ABAP development in order to write an understandable, maintainable, and efficient ABAP code. The Styleguide for Clean ABAP on GitHub published by SAP serves as a guideline for best practices, continuously extended and improved by the community.
With the value true, LF-ET includes Clean Code recommendations during generation. Hence, e.g. generated variables and parameters are created without prefix, e.g. "iv_" or "gt_" (Hungarian notation).
Entry in an LFET.Project.ini-file:
ide.ABAP.Clean = true
Entry in an LFET.Project.yaml-file:
ide.ABAP:
Enabled: true
Clean: true