Removed some added lint exceptions

This commit is contained in:
Adam Gastineau
2021-03-18 06:21:16 -07:00
parent 785017999b
commit 82b1fead17
2 changed files with 1 additions and 3 deletions

View File

@@ -1,9 +1,9 @@
/* global jest */
import { mount } from '@vue/test-utils'
import App from '@/App'
import { crossword } from '../cypress/fixtures/crosswords'
import { fillCrossword, getCrossword } from './jestHelpers'
// eslint-disable-next-line no-undef
global.fetch = jest.fn(() => {
return Promise.resolve({
json: () => Promise.resolve({}),

View File

@@ -16,8 +16,6 @@ plugins.registerHandler((ipc) => {
})
ipc.on('dev-server:compile:success', () => {
// eslint-disable-next-line no-undef
allowToRequest = true,
baseEmitter.emit('dev-server:compile:success')
})