mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-07 19:07:28 -08:00
3566c13afc
* feat: Allow `eslint-config` to be externally consumable * refactor: Adjust import styles
15 lines
281 B
JavaScript
15 lines
281 B
JavaScript
const sharedOptions = require('@n8n_io/eslint-config/shared');
|
|
|
|
/**
|
|
* @type {import('@types/eslint').ESLint.ConfigData}
|
|
*/
|
|
module.exports = {
|
|
extends: ['@n8n_io/eslint-config/base'],
|
|
|
|
...sharedOptions(__dirname),
|
|
|
|
rules: {
|
|
'import/order': 'off', // TODO: remove this
|
|
},
|
|
};
|