mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
19 lines
350 B
JavaScript
19 lines
350 B
JavaScript
/**
|
|
* @type {import('@types/eslint').ESLint.ConfigData}
|
|
*/
|
|
module.exports = {
|
|
extends: ['./base'],
|
|
|
|
env: {
|
|
es6: true,
|
|
node: true,
|
|
},
|
|
|
|
rules: {
|
|
/**
|
|
* https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/docs/rules/return-await.md
|
|
*/
|
|
'@typescript-eslint/return-await': ['error', 'always'],
|
|
},
|
|
};
|