mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
17 lines
320 B
JavaScript
17 lines
320 B
JavaScript
|
/**
|
||
|
* @type {import('@types/eslint').ESLint.ConfigData}
|
||
|
*/
|
||
|
module.exports = {
|
||
|
extends: ['@n8n_io/eslint-config/node'],
|
||
|
ignorePatterns: [
|
||
|
'jest.config.js',
|
||
|
// TODO: Remove these
|
||
|
'src/databases/migrations/**',
|
||
|
'src/databases/ormconfig.ts',
|
||
|
],
|
||
|
rules: {
|
||
|
// TODO: Remove this
|
||
|
'import/order': 'off',
|
||
|
},
|
||
|
};
|