Skip to content

Commit 1704d84

Browse files
Package refresh and some fixes 🌬️ (CoorpAcademy#148)
Merge pull request CoorpAcademy#148 from CoorpAcademy/package-refresh - Upgrade dependencies (ava 3 and eslint 7 included) 📤 - Fix `_waitFor` unknown issue reported in CoorpAcademy#145 for `serverless-offline-kinesis` and `serverless-offline-dynamodb-streams` 🐛 - Fix broken sqs arn reported by CoorpAcademy#133 `serverless-offline-sqs` 🏷️ - Adjustements and stabilisation of the integration tests ⚖️ For more details, see commit list.
2 parents 4dfa102 + 38c6b53 commit 1704d84

File tree

30 files changed

+14813
-27298
lines changed

30 files changed

+14813
-27298
lines changed

.eslintrc.js

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ module.exports = {
1616
'promise/no-native': 'off',
1717
'no-param-reassign': 'off',
1818
'import/no-extraneous-dependencies': 'off',
19+
'node/no-extraneous-require': [
20+
'error',
21+
{
22+
allowModules: ['ava', 'aws-sdk']
23+
}
24+
],
1925
'unicorn/no-unreadable-array-destructuring': 'off',
2026
'unicorn/consistent-function-scoping': 'off'
2127
},
@@ -25,6 +31,12 @@ module.exports = {
2531
rules: {
2632
'import/no-extraneous-dependencies': 'off'
2733
}
34+
},
35+
{
36+
files: ['ava.config.js'],
37+
rules: {
38+
'node/no-unsupported-features/es-syntax': 'off'
39+
}
2840
}
2941
]
3042
};

0 commit comments

Comments
 (0)