[ACS-5991] ESLint fixes and code quality improvements (#8893)

* prefer-optional-chain: core

* prefer-optional-chain: content, fix typings

* prefer-optional-chain: process, fix typings

* prefer-optional-chain: process-cloud, fix typings, fix ts configs and eslint

* [ci: force] sonar errors fixes, insights lib

* [ci:force] fix security issues

* [ci:force] fix metadata e2e bug, js assignment bugs

* [ci:force] fix lint issue

* [ci:force] fix tests
This commit is contained in:
Denys Vuika
2023-09-18 09:42:16 +01:00
committed by GitHub
parent 99f591ed67
commit a1dd270c5d
203 changed files with 4155 additions and 4960 deletions

View File

@@ -16,11 +16,10 @@
*/
var TaskAssigneeModel = function (details) {
this.id;
this.firstName;
this.lastName;
this.email;
this.id = undefined;
this.firstName = undefined;
this.lastName = undefined;
this.email = undefined;
this.getFirstName = function () {
return this.firstName;
@@ -38,12 +37,11 @@ var TaskAssigneeModel = function (details) {
return this.email;
};
this.getEntireName = function() {
return this.firstName + " " + this.getLastName();
this.getEntireName = function () {
return this.firstName + ' ' + this.getLastName();
};
Object.assign(this, details);
};
module.exports = TaskAssigneeModel;