refactor: Enable style/indent-binary-ops rule

This commit is contained in:
Joachim Van Herwegen
2024-03-12 16:24:21 +01:00
parent 73fbe80cff
commit 331f83d659
11 changed files with 27 additions and 21 deletions

View File

@@ -67,8 +67,10 @@ export class LinkRelObject {
if (this.objectAllowed(object)) {
if (this.ephemeral) {
metadata.add(this.value, namedNode(object), SOLID_META.terms.ResponseMetadata);
logger.debug(`"<${metadata.identifier.value}> <${this.value.value}> <${object}>." ` +
`will not be stored permanently in the metadata.`);
logger.debug(
`"<${metadata.identifier.value}> <${this.value.value}> <${object}>." ` +
`will not be stored permanently in the metadata.`,
);
} else {
metadata.add(this.value, namedNode(object));
}