Skip to content

Commit 545c160

Browse files
committed
Updated formatting
1 parent f127c49 commit 545c160

File tree

2 files changed

+22
-4
lines changed

2 files changed

+22
-4
lines changed

lib/email-client/outlook-client.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1578,9 +1578,14 @@ class OutlookClient extends BaseClient {
15781578
}
15791579

15801580
try {
1581-
messageData = await this.request(`/${this.oauth2UserPath}/messages/${textId}`, 'get', {
1582-
$select: 'body'
1583-
}, requestOptions);
1581+
messageData = await this.request(
1582+
`/${this.oauth2UserPath}/messages/${textId}`,
1583+
'get',
1584+
{
1585+
$select: 'body'
1586+
},
1587+
requestOptions
1588+
);
15841589
} catch (err) {
15851590
switch (err.oauthRequest?.status) {
15861591
case 404: {

list-generate.js

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,20 @@ const he = require('he');
44
const packageData = require('./package.json');
55
const satisfies = require('spdx-satisfies');
66

7-
const ALLOWED_LICENSES = ['ISC', 'MIT', 'Apache-1.0+', 'CC-BY-3.0', 'BSD-2-Clause', 'BSD-3-Clause', '0BSD', 'CC0-1.0', 'MIT-0', 'MPL-2.0', 'Python-2.0', 'BlueOak-1.0.0'];
7+
const ALLOWED_LICENSES = [
8+
'ISC',
9+
'MIT',
10+
'Apache-1.0+',
11+
'CC-BY-3.0',
12+
'BSD-2-Clause',
13+
'BSD-3-Clause',
14+
'0BSD',
15+
'CC0-1.0',
16+
'MIT-0',
17+
'MPL-2.0',
18+
'Python-2.0',
19+
'BlueOak-1.0.0'
20+
];
821

922
let chunks = [];
1023
process.stdin.on('readable', () => {

0 commit comments

Comments
 (0)