You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser: '@typescript-eslint/parser',// Specifies the ESLint parser
3
-
extends: [
4
-
'plugin:@typescript-eslint/recommended',// Uses the recommended rules from the @typescript-eslint/eslint-plugin
5
-
'prettier/@typescript-eslint',// Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
6
-
'plugin:prettier/recommended',// Enables eslint-plugin-prettier and displays prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
7
-
],
8
-
parserOptions: {
9
-
ecmaVersion: 2018,// Allows for the parsing of modern ECMAScript features
10
-
sourceType: 'module',// Allows for the use of imports
parser: '@typescript-eslint/parser',// Specifies the ESLint parser
3
+
extends: [
4
+
'plugin:@typescript-eslint/recommended',// Uses the recommended rules from the @typescript-eslint/eslint-plugin
5
+
'prettier/@typescript-eslint',// Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
6
+
'plugin:prettier/recommended'// Enables eslint-plugin-prettier and displays prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
7
+
],
8
+
parserOptions: {
9
+
ecmaVersion: 2018,// Allows for the parsing of modern ECMAScript features
10
+
sourceType: 'module'// Allows for the use of imports
* Using the provided hooks create an `withHooks` higher order function
19
-
* @param hooks a variadic array of config objects containing the hooks to apply to your lambda. Each config object can contain `before`, `after` and `onError` arrays
20
-
* @returns WithHooks() function that wraps around your lambda
29
+
* @param config optional configuration object for this hook
0 commit comments