mirror of
https://github.com/abapGit/abapGit.git
synced 2025-05-01 04:08:27 +08:00
update to latest abaplint
This commit is contained in:
parent
4b96b7469d
commit
ee76ec1f45
208
abaplint.json
208
abaplint.json
|
@ -1,95 +1,136 @@
|
|||
{
|
||||
"global": {
|
||||
"version": "v702",
|
||||
"skipGeneratedGatewayClasses": true
|
||||
"skipGeneratedGatewayClasses": true,
|
||||
"skipGeneratedPersistentClasses": true,
|
||||
"skipGeneratedFunctionGroups": true
|
||||
},
|
||||
"rules": {
|
||||
"7bit_ascii": {
|
||||
"enabled": true
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"breakpoint": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"check_variables": {
|
||||
"enabled": false,
|
||||
"exclude": []
|
||||
},
|
||||
"class_attribute_names": {
|
||||
"enabled": true,
|
||||
"exclude": [],
|
||||
"ignoreExceptions": true,
|
||||
"statics": "^G._.*$",
|
||||
"instance": "^M._.*$"
|
||||
},
|
||||
"cloud_types": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"colon_missing_space": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"commented_code": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"contains_tab": {
|
||||
"enabled": true
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"definitions_top": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"description_empty": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"empty_statement": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"exit_or_check": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"exporting": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"functional_writing": {
|
||||
"enabled": true,
|
||||
"exclude": [],
|
||||
"ignoreExceptions": true
|
||||
},
|
||||
"global_class": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"identical_form_names": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"indentation": {
|
||||
"enabled": true,
|
||||
"exclude": [],
|
||||
"ignoreExceptions": true
|
||||
},
|
||||
"inline_data_old_versions": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"keywords_upper": {
|
||||
"enabled": true,
|
||||
"exclude": [],
|
||||
"ignoreExceptions": true
|
||||
},
|
||||
"line_length": {
|
||||
"enabled": true,
|
||||
"exclude": [],
|
||||
"length": 120
|
||||
},
|
||||
"max_one_statement": {
|
||||
"enabled": true
|
||||
},
|
||||
"parser_error": {
|
||||
"enabled": true
|
||||
},
|
||||
"space_before_colon": {
|
||||
"enabled": true
|
||||
},
|
||||
"colon_missing_space": {
|
||||
"enabled": true
|
||||
},
|
||||
"exit_or_check": {
|
||||
"enabled": true
|
||||
},
|
||||
"line_only_punc": {
|
||||
"enabled": true,
|
||||
"exclude": [],
|
||||
"ignoreExceptions": true
|
||||
},
|
||||
"obsolete_statement": {
|
||||
"local_class_naming": {
|
||||
"enabled": true,
|
||||
"refresh": true,
|
||||
"compute": true,
|
||||
"add": true,
|
||||
"subtract": true,
|
||||
"multiply": true,
|
||||
"move": true,
|
||||
"divide": true,
|
||||
"requested": true
|
||||
"exclude": [],
|
||||
"local": "^LCL_.*$",
|
||||
"test": "^LTCL_.*$"
|
||||
},
|
||||
"start_at_tab": {
|
||||
"enabled": true
|
||||
},
|
||||
"whitespace_end": {
|
||||
"enabled": true
|
||||
},
|
||||
"exporting": {
|
||||
"enabled": true
|
||||
},
|
||||
"empty_statement": {
|
||||
"enabled": true
|
||||
},
|
||||
"sequential_blank": {
|
||||
"local_variable_names": {
|
||||
"enabled": true,
|
||||
"lines": 4
|
||||
"exclude": [],
|
||||
"expectedData": "^L._.*$",
|
||||
"expectedConstant": "^LC_.*$",
|
||||
"expectedFS": "^<L._.*>$"
|
||||
},
|
||||
"definitions_top": {
|
||||
"enabled": true
|
||||
},
|
||||
"breakpoint": {
|
||||
"enabled": true
|
||||
},
|
||||
"nesting": {
|
||||
"max_one_statement": {
|
||||
"enabled": true,
|
||||
"depth": 5
|
||||
"exclude": []
|
||||
},
|
||||
"keywords_upper": {
|
||||
"message": {
|
||||
"enabled": false,
|
||||
"exclude": []
|
||||
},
|
||||
"message_text_empty": {
|
||||
"enabled": true,
|
||||
"ignoreExceptions": true
|
||||
},
|
||||
"cloud_types": {
|
||||
"enabled": true
|
||||
"exclude": []
|
||||
},
|
||||
"method_length": {
|
||||
"enabled": true,
|
||||
"exclude": [],
|
||||
"statements": 100
|
||||
},
|
||||
"mix_returning": {
|
||||
"enabled": true
|
||||
},
|
||||
"method_parameter_names": {
|
||||
"enabled": true,
|
||||
"exclude": [],
|
||||
"ignoreExceptions": true,
|
||||
"importing": "^I._.*$",
|
||||
"returning": "^R._.*$",
|
||||
|
@ -99,20 +140,51 @@
|
|||
"P_TASK"
|
||||
]
|
||||
},
|
||||
"inline_data_old_versions": {
|
||||
"enabled": true
|
||||
},
|
||||
"local_variable_names": {
|
||||
"mix_returning": {
|
||||
"enabled": true,
|
||||
"expectedData": "^L._.*$",
|
||||
"expectedConstant": "^LC_.*$",
|
||||
"expectedFS": "^<L._.*>$"
|
||||
"exclude": []
|
||||
},
|
||||
"class_attribute_names": {
|
||||
"nesting": {
|
||||
"enabled": true,
|
||||
"ignoreExceptions": true,
|
||||
"statics": "^G._.*$",
|
||||
"instance": "^M._.*$"
|
||||
"exclude": [],
|
||||
"depth": 5
|
||||
},
|
||||
"obsolete_statement": {
|
||||
"enabled": true,
|
||||
"exclude": [],
|
||||
"refresh": true,
|
||||
"compute": true,
|
||||
"add": true,
|
||||
"subtract": true,
|
||||
"multiply": true,
|
||||
"move": true,
|
||||
"divide": true,
|
||||
"requested": true
|
||||
},
|
||||
"parser_error": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"sequential_blank": {
|
||||
"enabled": true,
|
||||
"exclude": [],
|
||||
"lines": 4
|
||||
},
|
||||
"space_before_colon": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"start_at_tab": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
},
|
||||
"superclass_final": {
|
||||
"enabled": false,
|
||||
"exclude": []
|
||||
},
|
||||
"whitespace_end": {
|
||||
"enabled": true,
|
||||
"exclude": []
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,10 +54,7 @@ CLASS ZCL_ABAPGIT_ECATT_DATA_DOWNL IMPLEMENTATION.
|
|||
lv_partyp = cl_apl_ecatt_const=>params_type_par.
|
||||
|
||||
ecatt_data ?= ecatt_object.
|
||||
* build_schema( ).
|
||||
* set_attributes_to_schema( ).
|
||||
set_attributes_to_template( ).
|
||||
* set_params_to_schema( ).
|
||||
get_general_params_data( im_params = ecatt_data->params
|
||||
im_ptyp = lv_partyp ).
|
||||
|
||||
|
@ -75,7 +72,6 @@ CLASS ZCL_ABAPGIT_ECATT_DATA_DOWNL IMPLEMENTATION.
|
|||
* ENDMS180406
|
||||
set_variants_to_dom( ecatt_data->params ).
|
||||
|
||||
* download_schema( ).
|
||||
download_data( ).
|
||||
|
||||
ENDMETHOD.
|
||||
|
|
|
@ -80,18 +80,14 @@ CLASS ZCL_ABAPGIT_ECATT_SCRIPT_DOWNL IMPLEMENTATION.
|
|||
ENDTRY.
|
||||
|
||||
toolname = ecatt_object->attrib->get_tool_name( ).
|
||||
* build_schema( ).
|
||||
* set_attributes_to_schema( ).
|
||||
set_attributes_to_template( ).
|
||||
|
||||
IF toolname EQ cl_apl_ecatt_const=>toolname_ecatt.
|
||||
|
||||
ecatt_script ?= ecatt_object.
|
||||
|
||||
* set_script_to_schema( ).
|
||||
set_script_to_template( ).
|
||||
|
||||
* set_params_to_schema( ).
|
||||
TRY.
|
||||
get_general_params_data( ecatt_script->params ).
|
||||
CATCH cx_ecatt_apl. "#EC NOHANDLER
|
||||
|
@ -125,7 +121,6 @@ CLASS ZCL_ABAPGIT_ECATT_SCRIPT_DOWNL IMPLEMENTATION.
|
|||
|
||||
ENDIF.
|
||||
|
||||
* download_schema( ).
|
||||
download_data( ).
|
||||
|
||||
ENDMETHOD.
|
||||
|
|
|
@ -53,12 +53,8 @@ CLASS ZCL_ABAPGIT_ECATT_SYSTEM_DOWNL IMPLEMENTATION.
|
|||
RETURN.
|
||||
ENDTRY.
|
||||
|
||||
* build_schema( ).
|
||||
* set_attributes_to_schema( ).
|
||||
set_attributes_to_template( ).
|
||||
* set_systems_data_to_schema( ).
|
||||
set_systems_data_to_template( ).
|
||||
* download_schema( ).
|
||||
download_data( ).
|
||||
|
||||
ENDMETHOD.
|
||||
|
|
|
@ -194,11 +194,9 @@ CLASS ZCL_ABAPGIT_REQUIREMENT_HELPER IMPLEMENTATION.
|
|||
lo_columns->set_optimize( ).
|
||||
|
||||
lo_column = lo_columns->get_column( 'REQUIRED_RELEASE' ).
|
||||
* lo_column->set_fixed_header_text( 'S' ).
|
||||
lo_column->set_short_text( 'Req. Rel.' ).
|
||||
|
||||
lo_column = lo_columns->get_column( 'REQUIRED_PATCH' ).
|
||||
* lo_column->set_fixed_header_text( 'S' ).
|
||||
lo_column->set_short_text( 'Req. SP L.' ).
|
||||
|
||||
lo_alv->set_screen_popup( start_column = 30
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
<CLSNAME>ZCX_ABAPGIT_NOT_FOUND</CLSNAME>
|
||||
<VERSION>1</VERSION>
|
||||
<LANGU>E</LANGU>
|
||||
<DESCRIPT>Not found</DESCRIPT>
|
||||
<CATEGORY>40</CATEGORY>
|
||||
<STATE>1</STATE>
|
||||
<CLSCCINCL>X</CLSCCINCL>
|
||||
|
|
Loading…
Reference in New Issue
Block a user