Skip to content

Commit

Permalink
Fix ESLint
Browse files Browse the repository at this point in the history
  • Loading branch information
yhatt committed Apr 12, 2022
1 parent 144db13 commit e1c0189
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/file.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable import/export, @typescript-eslint/no-namespace */
/* eslint-disable @typescript-eslint/no-namespace */
import fs from 'fs'
import os from 'os'
import path from 'path'
Expand Down
2 changes: 1 addition & 1 deletion src/preview.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable import/export, @typescript-eslint/no-namespace */
/* eslint-disable @typescript-eslint/no-namespace */
import { EventEmitter } from 'events'
import { nanoid } from 'nanoid'
import puppeteer from 'puppeteer-core'
Expand Down
2 changes: 1 addition & 1 deletion src/server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable import/export, @typescript-eslint/no-namespace */
/* eslint-disable @typescript-eslint/no-namespace */
import EventEmitter from 'events'
import fs from 'fs'
import { Server as HttpServer } from 'http'
Expand Down
2 changes: 1 addition & 1 deletion src/theme.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable import/export, @typescript-eslint/no-namespace */
/* eslint-disable @typescript-eslint/no-namespace */
import fs from 'fs'
import path from 'path'
import { Marpit } from '@marp-team/marpit'
Expand Down
2 changes: 1 addition & 1 deletion src/watcher.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* eslint-disable import/export, @typescript-eslint/no-namespace */
/* eslint-disable @typescript-eslint/no-namespace */
import crypto from 'crypto'
import path from 'path'
import chokidar from 'chokidar'
Expand Down

0 comments on commit e1c0189

Please sign in to comment.