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:
कारतोफ्फेलस्क्रिप्ट™ 2022-12-22 16:42:07 +01:00 committed by GitHub
parent 746e8487d2
commit 0333b053ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 6 deletions

View file

@ -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': {

View file

@ -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';