Skip to content

Commit d7d8e0d

Browse files
committed
Disable unused unicorn/no-process-exit in tests 🦄
1 parent ec5e1c3 commit d7d8e0d

File tree

9 files changed

+0
-9
lines changed

9 files changed

+0
-9
lines changed

packages/serverless-offline-dynamodb-streams/src/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@ class ServerlessOfflineDynamodbStreams {
101101
await Promise.all(eventModules);
102102

103103
if (!skipExit) {
104-
// eslint-disable-next-line unicorn/no-process-exit
105104
process.exit(0);
106105
}
107106
}

packages/serverless-offline-kinesis/src/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ class ServerlessOfflineKinesis {
9999
await Promise.all(eventModules);
100100

101101
if (!skipExit) {
102-
// eslint-disable-next-line unicorn/no-process-exit
103102
process.exit(0);
104103
}
105104
}

packages/serverless-offline-s3/src/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,6 @@ class ServerlessOfflineS3 {
100100
await Promise.all(eventModules);
101101

102102
if (!skipExit) {
103-
// eslint-disable-next-line unicorn/no-process-exit
104103
process.exit(0);
105104
}
106105
}

packages/serverless-offline-sqs/src/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ class ServerlessOfflineSQS {
115115
await Promise.all(eventModules);
116116

117117
if (!skipExit) {
118-
// eslint-disable-next-line unicorn/no-process-exit
119118
process.exit(0);
120119
}
121120
}

tests/serverless-plugins-integration/test-dynamodb-streams.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable unicorn/no-process-exit */
21
const {Writable} = require('stream');
32
const {spawn} = require('child_process');
43
const onExit = require('signal-exit');

tests/serverless-plugins-integration/test-kinesis.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable unicorn/no-process-exit */
21
const {Writable} = require('stream');
32
const {spawn} = require('child_process');
43
const onExit = require('signal-exit');

tests/serverless-plugins-integration/test-s3.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable unicorn/no-process-exit */
21
const {Writable} = require('stream');
32
const {spawn} = require('child_process');
43
const onExit = require('signal-exit');

tests/serverless-plugins-integration/test-sqs-autocreate.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable unicorn/no-process-exit */
21
const {Writable} = require('stream');
32
const {spawn} = require('child_process');
43
const onExit = require('signal-exit');

tests/serverless-plugins-integration/test-sqs.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable unicorn/no-process-exit */
21
const {Writable} = require('stream');
32
const {spawn} = require('child_process');
43
const onExit = require('signal-exit');

0 commit comments

Comments
 (0)