update deps in package.json (#4514)

* update deps in package.json

* enable rule max_one_method_parameter_per_line
This commit is contained in:
Lars Hvam 2021-02-15 14:16:16 +01:00 committed by GitHub
parent 7e0b75d2a8
commit 5efc7a63ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 18 additions and 9 deletions

View File

@ -9,6 +9,7 @@
"zcl_abapgit_persistence_db",
"zcl_abapgit_http_client",
"zcl_abapgit_login_manager",
"zif_abapgit_html_viewer",
"zcl_abapgit_path",
"zcl_abapgit_progress",
"zcl_abapgit_string_map",
@ -91,7 +92,9 @@
{"object": "ZCL_ABAPGIT_XML_PRETTY", "class": "ltcl_test", "method": "unpretty"},
{"object": "ZCL_ABAPGIT_ZLIB", "class": "ltcl_zlib", "method": "fixed"},
{"object": "ZCL_ABAPGIT_ZLIB", "class": "ltcl_zlib", "method": "dynamic"},
{"object": "ZCL_ABAPGIT_UTILS", "class": "ltcl_utils_test", "method": "extract_author_data"}
{"object": "ZCL_ABAPGIT_UTILS", "class": "ltcl_utils_test", "method": "extract_author_data1"},
{"object": "ZCL_ABAPGIT_UTILS", "class": "ltcl_utils_test", "method": "extract_author_data2"},
{"object": "ZCL_ABAPGIT_UTILS", "class": "ltcl_utils_test", "method": "extract_author_data9"}
]
}
}

View File

@ -74,6 +74,7 @@
"globalMacros": []
},
"rules": {
"max_one_method_parameter_per_line": true,
"prefer_raise_exception_new": true,
"use_class_based_exceptions": true,
"uncaught_exception": true,
@ -170,7 +171,7 @@
"W3MI"
]
},
"ambiguous_statement": false,
"ambiguous_statement": true,
"avoid_use": {
"define": true,
"endselect": true,
@ -328,7 +329,8 @@
"requested": true,
"setExtended": true,
"withHeaderLine": true,
"occurs": true
"occurs": true,
"parameter": true
},
"parser_error": {},
"preferred_compare_operator": {

View File

@ -17,10 +17,10 @@
"url": "git+https://github.com/abapGit/abapGit.git"
},
"devDependencies": {
"@abaplint/cli": "^2.66.2",
"@abaplint/transpiler-cli": "^1.2.7",
"@abaplint/runtime": "^1.2.7",
"@abaplint/cli": "^2.67.0",
"@abaplint/transpiler-cli": "^1.2.12",
"@abaplint/runtime": "^1.2.12",
"abapmerge": "^0.14.2",
"eslint": "^7.19.0"
"eslint": "^7.20.0"
}
}

View File

@ -12,7 +12,9 @@ CLASS zcl_abapgit_object_iatu DEFINITION PUBLIC INHERITING FROM zcl_abapgit_obje
ev_source TYPE string
RAISING zcx_abapgit_exception,
save
IMPORTING is_attr TYPE w3tempattr iv_source TYPE string
IMPORTING
is_attr TYPE w3tempattr
iv_source TYPE string
RAISING zcx_abapgit_exception,
w3_api_load
IMPORTING is_name TYPE iacikeyt

View File

@ -20,7 +20,9 @@ CLASS zcl_abapgit_object_idoc DEFINITION PUBLIC INHERITING FROM zcl_abapgit_obje
DATA: mv_idoctyp TYPE edi_iapi00-idoctyp.
CLASS-METHODS clear_idoc_segement_field IMPORTING iv_fieldname TYPE csequence CHANGING cg_structure TYPE any.
CLASS-METHODS clear_idoc_segement_field
IMPORTING iv_fieldname TYPE csequence
CHANGING cg_structure TYPE any.
ENDCLASS.