Skip to content

Commit 68d26cd

Browse files
committed
fix: ESLint issue
1 parent 5b73403 commit 68d26cd

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.eslintrc.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ module.exports = {
2020
"prettier/prettier": [
2121
"error",
2222
{
23-
endOfLine: "off",
23+
endOfLine: "auto",
2424
},
2525
],
2626
"simple-import-sort/imports": "warn",

rollup.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,8 @@ export default defineConfig({
2828
"sharp",
2929
"node-html-parser",
3030
"crypto",
31+
"puppeteer",
32+
"puppeteer-extra",
33+
"puppeteer-extra-plugin-stealth",
3134
],
3235
});

src/services/chap.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import inquirer from "inquirer";
12
import { executablePath } from "puppeteer";
23
import puppeteer from "puppeteer-extra";
34
import StealthPlugin from "puppeteer-extra-plugin-stealth";
4-
import inquirer from "inquirer";
55

66
import type { ChapterType, ImageType } from "../shared/types.js";
77
import type { ComicInfo } from "./comic.js";

0 commit comments

Comments
 (0)