Skip to content

Commit ff48c0d

Browse files
soccermaxMax Gruenfelder
and
Max Gruenfelder
authoredJul 26, 2023
different prettier settings (#19)
Co-authored-by: Max Gruenfelder <maximilian.gruenfelder@sap.com>
1 parent a5b09a9 commit ff48c0d

26 files changed

+458
-1044
lines changed
 

‎.eslintrc.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,7 @@ module.exports = {
2121
DROP: false,
2222
},
2323
plugins: ["jest", "node"],
24-
extends: [
25-
"eslint:recommended",
26-
"plugin:jest/recommended",
27-
"plugin:@sap/cds/recommended",
28-
"prettier",
29-
],
24+
extends: ["eslint:recommended", "plugin:jest/recommended", "plugin:@sap/cds/recommended", "prettier"],
3025
rules: {
3126
"no-unused-vars": [
3227
"error",

‎.prettierrc.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
printWidth: 120
3+
trailingComma: es5

‎docs/implement-event/index.md

+2-8
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,7 @@ for each queueEntry. Each queueEntry may have a different status.
4242
```js
4343
"use strict";
4444

45-
const {
46-
EventQueueBaseClass,
47-
EventProcessingStatus,
48-
} = require("@cap-js-community/event-queue");
45+
const { EventQueueBaseClass, EventProcessingStatus } = require("@cap-js-community/event-queue");
4946

5047
class EventQueueMinimalistic extends EventQueueBaseClass {
5148
constructor(context, eventType, eventSubType, config) {
@@ -96,10 +93,7 @@ class EventQueueAdvanced extends EventQueueBaseClass {
9693
}
9794

9895
async checkEventAndGeneratePayload(queueEntry) {
99-
const eventStillValid = await checkEventIsStillValid(
100-
this.tx,
101-
queueEntry.payload
102-
);
96+
const eventStillValid = await checkEventIsStillValid(this.tx, queueEntry.payload);
10397
if (!eventStillValid) {
10498
this.logger.info("Event not valid anymore, skipping processing", {
10599
eventType: this.__eventType,

‎src/EventQueueError.js

+5-10
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,10 @@ const ERROR_CODES = {
1515

1616
const ERROR_CODES_META = {
1717
[ERROR_CODES.WRONG_TX_USAGE]: {
18-
message:
19-
"Usage of this.tx|this.context is not allowed if parallel event processing is enabled",
18+
message: "Usage of this.tx|this.context is not allowed if parallel event processing is enabled",
2019
},
2120
[ERROR_CODES.UNKNOWN_EVENT_TYPE]: {
22-
message:
23-
"The event type and subType configuration is not configured! Maintain the combination in the config file.",
21+
message: "The event type and subType configuration is not configured! Maintain the combination in the config file.",
2422
},
2523
[ERROR_CODES.NOT_INITIALIZED]: {
2624
message:
@@ -33,16 +31,13 @@ const ERROR_CODES_META = {
3331
message: "disabled reconnect, because we are not running on cloud foundry",
3432
},
3533
[ERROR_CODES.MISSING_TABLE_DEFINITION]: {
36-
message:
37-
"Could not find table in csn. Make sure the provided table name is correct and the table is known by CDS.",
34+
message: "Could not find table in csn. Make sure the provided table name is correct and the table is known by CDS.",
3835
},
3936
[ERROR_CODES.MISSING_ELEMENT_IN_TABLE]: {
40-
message:
41-
"The provided table doesn't match the required structure. At least the following element is missing.",
37+
message: "The provided table doesn't match the required structure. At least the following element is missing.",
4238
},
4339
[ERROR_CODES.TYPE_MISMATCH_TABLE]: {
44-
message:
45-
"At least one field in the provided table doesn't have the expected data type.",
40+
message: "At least one field in the provided table doesn't have the expected data type.",
4641
},
4742
};
4843

0 commit comments

Comments
 (0)
Please sign in to comment.