ESLint: cleanup await expect from protractor tests (#9630)

This commit is contained in:
Denys Vuika
2024-04-30 08:07:10 -04:00
committed by GitHub
parent 4109f272ea
commit f401b8c13e
114 changed files with 2096 additions and 1908 deletions

View File

@@ -45,7 +45,6 @@
"accessibility": "explicit"
}
],
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/no-var-requires": "error",

View File

@@ -16,15 +16,7 @@
*/
export * from './widgets/index';
export * from './services/ecm-model.service';
export * from './services/editor.service';
export * from './services/process-content.service';
export * from './services/task.service';
export * from './services/task-form.service';
export * from './services/process-definition.service';
export * from './services/activiti-alfresco.service';
export * from './services/external-alfresco-api.service';
export * from './services';
export * from './process-form-rendering.service';
@@ -32,7 +24,6 @@ export * from './events/validate-dynamic-table-row.event';
export * from './model/form-definition.model';
export * from './form-list/form-list.component';
export * from './form.component';
export * from './start-form.component';

View File

@@ -0,0 +1,26 @@
/*!
* @license
* Copyright © 2005-2023 Hyland Software, Inc. and its affiliates. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export * from './activiti-alfresco.service';
export * from './ecm-model.service';
export * from './editor.service';
export * from './external-alfresco-api.service';
export * from './model.service';
export * from './process-content.service';
export * from './process-definition.service';
export * from './task.service';
export * from './task-form.service';