mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
fix: Fix the linting issue on master (no-changelog) (#5013)
* get rid of the "`parseForESLint` from parser `@typescript-eslint/parser` is invalid" errors * fix the formatting issue
This commit is contained in:
parent
746e8487d2
commit
0333b053ee
|
@ -18,7 +18,7 @@ exports.sharedOptions = (tsconfigRootDir, mode) => {
|
|||
|
||||
const settings = {
|
||||
'import/parsers': {
|
||||
'@typescript-eslint/parser': isFrontend ? ['.ts', '.vue'] : ['.ts'],
|
||||
'@typescript-eslint/parser': ['.ts'],
|
||||
},
|
||||
|
||||
'import/resolver': {
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
/* eslint-disable no-param-reassign */
|
||||
/* eslint-disable @typescript-eslint/no-unused-vars */
|
||||
import express from 'express';
|
||||
import {
|
||||
deepCopy,
|
||||
INodeCredentialTestResult,
|
||||
LoggerProxy,
|
||||
} from 'n8n-workflow';
|
||||
import { deepCopy, INodeCredentialTestResult, LoggerProxy } from 'n8n-workflow';
|
||||
|
||||
import * as GenericHelpers from '@/GenericHelpers';
|
||||
import { InternalHooksManager } from '@/InternalHooksManager';
|
||||
|
|
Loading…
Reference in a new issue