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/node'],
|
2022-11-09 06:25:00 -08:00
|
|
|
|
2022-12-22 00:55:39 -08:00
|
|
|
...sharedOptions(__dirname),
|
2022-11-09 06:25:00 -08:00
|
|
|
|
2023-11-27 00:11:52 -08:00
|
|
|
parserOptions: {
|
|
|
|
project: './tsconfig.json',
|
|
|
|
},
|
|
|
|
|
2022-11-23 07:20:28 -08:00
|
|
|
ignorePatterns: ['bin/*.js'],
|
|
|
|
|
2022-09-12 02:41:50 -07:00
|
|
|
rules: {
|
2024-04-10 05:02:02 -07:00
|
|
|
complexity: 'error',
|
|
|
|
|
2022-09-12 02:41:50 -07:00
|
|
|
// TODO: Remove this
|
|
|
|
'import/order': 'off',
|
2022-10-31 04:45:34 -07:00
|
|
|
'@typescript-eslint/ban-ts-comment': ['error', { 'ts-ignore': true }],
|
2022-09-12 02:41:50 -07:00
|
|
|
},
|
|
|
|
};
|