fix: Set '@typescript-eslint/return-await' rule to 'always' for node code (no-changelog) (#8363)

Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
Tomi Turtiainen
2024-01-17 17:08:50 +02:00
committed by GitHub
parent 2eb829a6b4
commit 9a1cc56806
369 changed files with 1041 additions and 928 deletions

View File

@@ -73,6 +73,6 @@ describe('Test MicrosoftOutlookV2, calendar => create', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -52,6 +52,6 @@ describe('Test MicrosoftOutlookV2, calendar => delete', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -74,6 +74,6 @@ describe('Test MicrosoftOutlookV2, calendar => get', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -93,6 +93,6 @@ describe('Test MicrosoftOutlookV2, calendar => getAll', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -73,6 +73,6 @@ describe('Test MicrosoftOutlookV2, calendar => update', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -102,6 +102,6 @@ describe('Test MicrosoftOutlookV2, contact => create', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -113,6 +113,6 @@ describe('Test MicrosoftOutlookV2, contact => update', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -142,6 +142,6 @@ describe('Test MicrosoftOutlookV2, draft => create', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -57,6 +57,6 @@ describe('Test MicrosoftOutlookV2, draft => send', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -150,6 +150,6 @@ describe('Test MicrosoftOutlookV2, contact => event', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -65,6 +65,6 @@ describe('Test MicrosoftOutlookV2, contact => folder', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -60,6 +60,6 @@ describe('Test MicrosoftOutlookV2, folderMessage => getAll', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -56,6 +56,6 @@ describe('Test MicrosoftOutlookV2, message => move', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -123,6 +123,6 @@ describe('Test MicrosoftOutlookV2, message => reply', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});

View File

@@ -62,6 +62,6 @@ describe('Test MicrosoftOutlookV2, message => send', () => {
};
for (const testData of tests) {
test(testData.description, async () => testNode(testData, nodeTypes));
test(testData.description, async () => await testNode(testData, nodeTypes));
}
});