mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
77ac953eaf
Co-authored-by: Marcus <[email protected]>
15 lines
296 B
JavaScript
15 lines
296 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: {
|
|
'@typescript-eslint/consistent-type-imports': 'error',
|
|
},
|
|
};
|