2023-07-19 00:35:10 -07:00
|
|
|
const sharedOptions = require('@n8n_io/eslint-config/shared');
|
2022-12-22 00:55:39 -08:00
|
|
|
|
2022-09-12 02:41:50 -07:00
|
|
|
/**
|
|
|
|
* @type {import('@types/eslint').ESLint.ConfigData}
|
|
|
|
*/
|
|
|
|
module.exports = {
|
|
|
|
extends: ['@n8n_io/eslint-config/base'],
|
2022-12-22 00:55:39 -08:00
|
|
|
...sharedOptions(__dirname),
|
2022-09-12 02:41:50 -07:00
|
|
|
ignorePatterns: [
|
|
|
|
'templates/**', // TODO: remove this
|
|
|
|
],
|
|
|
|
rules: {
|
|
|
|
'import/order': 'off', // TODO: remove this
|
2022-10-31 04:45:34 -07:00
|
|
|
'@typescript-eslint/ban-ts-comment': ['warn', { 'ts-ignore': true }],
|
2022-09-12 02:41:50 -07:00
|
|
|
},
|
|
|
|
};
|