-
Notifications
You must be signed in to change notification settings - Fork 73
Part 1 - core feature - allow pseudo comment exception #329 #357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
interface Y_IF_CLEAN_CODE_MANAGER | ||
public . | ||
INTERFACE y_if_clean_code_manager | ||
PUBLIC . | ||
|
||
|
||
types: | ||
TYPES: | ||
BEGIN OF check_configuration, | ||
object_creation_date TYPE datum, | ||
threshold TYPE ycicc_threshold, | ||
prio TYPE ycicc_message_kind, | ||
apply_on_productive_code TYPE ycicc_productive_code, | ||
apply_on_testcode TYPE ycicc_testcode, | ||
allow_pseudo_comments TYPE ycicp_pseudo_comments, | ||
END OF check_configuration . | ||
types: | ||
TYPES: | ||
check_configurations TYPE STANDARD TABLE OF check_configuration WITH DEFAULT KEY . | ||
|
||
methods READ_CHECK_CUSTOMIZING | ||
importing | ||
CHECKID type SEOCLSNAME | ||
returning | ||
value(RESULT) type CHECK_CONFIGURATIONS | ||
raising | ||
YCX_NO_CHECK_CUSTOMIZING . | ||
methods CALCULATE_OBJ_CREATION_DATE | ||
importing | ||
OBJECT_NAME type SOBJ_NAME | ||
OBJECT_TYPE type TROBJTYPE | ||
returning | ||
value(RESULT) type CREATIONDT . | ||
endinterface. | ||
METHODS read_check_customizing | ||
IMPORTING | ||
checkid TYPE seoclsname | ||
RETURNING | ||
VALUE(result) TYPE check_configurations | ||
RAISING | ||
ycx_no_check_customizing . | ||
METHODS calculate_obj_creation_date | ||
IMPORTING | ||
object_name TYPE sobj_name | ||
object_type TYPE trobjtype | ||
RETURNING | ||
VALUE(result) TYPE creationdt . | ||
ENDINTERFACE. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<abapGit version="v1.0.0" serializer="LCL_OBJECT_DTEL" serializer_version="v1.0.0"> | ||
<asx:abap xmlns:asx="http://www.sap.com/abapxml" version="1.0"> | ||
<asx:values> | ||
<DD04V> | ||
<ROLLNAME>YCICP_PSEUDO_COMMENTS</ROLLNAME> | ||
This conversation was marked as resolved.
Show resolved
Hide resolved
|
||
<DDLANGUAGE>E</DDLANGUAGE> | ||
<DOMNAME>BOOLE</DOMNAME> | ||
<HEADLEN>55</HEADLEN> | ||
<SCRLEN1>10</SCRLEN1> | ||
<SCRLEN2>20</SCRLEN2> | ||
<SCRLEN3>40</SCRLEN3> | ||
<DDTEXT>Code Pal - Allow Pseudo Comments</DDTEXT> | ||
<REPTEXT>PseudCom</REPTEXT> | ||
<SCRTEXT_S>PseudCom</SCRTEXT_S> | ||
<SCRTEXT_M>PseudCom</SCRTEXT_M> | ||
<SCRTEXT_L>PseudCom</SCRTEXT_L> | ||
<DTELMASTER>E</DTELMASTER> | ||
<REFKIND>D</REFKIND> | ||
</DD04V> | ||
</asx:values> | ||
</asx:abap> | ||
</abapGit> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.