Skip to content
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

abaplint adjustments #39

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion abaplint.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,14 @@
"line_only_punc": true,
"commented_code": false,
"align_parameters": true,
"method_length": true,
"method_length": {
"exclude": [],
"severity": "Error",
"statements": 100,
"errorWhenEmpty": false,
"ignoreTestClasses": false,
"checkForms": true
},
"unnecessary_chaining": false,
"remove_descriptions": false,
"exporting": true,
Expand Down
4 changes: 2 additions & 2 deletions src/zcl_neptune_abapgit_utilities.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ public section.
value(RT_CODE_LINES) type STRING_TABLE .
class-methods FIX_STRING_SERIALIZE
changing
!CV_STRING type STRING .
!CV_STRING type STRING ##NEEDED.
class-methods FIX_STRING_DESERIALIZE
changing
!CV_STRING type STRING .
!CV_STRING type STRING ##NEEDED.
class-methods GET_SKIP_FIELDS_FOR_ARTIFACT
importing
!IV_ARTIFACT_TYPE type /NEPTUNE/ARTIFACT_TYPE
Expand Down
Loading