From a874b4a52a0ca6f6e87df6592381f7c9a3b661fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCrg=C3=BCn=20Day=C4=B1o=C4=9Flu?= Date: Fri, 26 Jul 2024 14:08:14 +0300 Subject: [PATCH] fix: eslint-ignore --- bin/example/routes/index.js | 2 ++ bin/example/server.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/bin/example/routes/index.js b/bin/example/routes/index.js index 0919685..7f69f49 100644 --- a/bin/example/routes/index.js +++ b/bin/example/routes/index.js @@ -1,3 +1,5 @@ +/* eslint-disable n/no-missing-import */ + import { html } from "ghtml"; export default async (fastify) => { diff --git a/bin/example/server.js b/bin/example/server.js index 681b000..2eb3018 100644 --- a/bin/example/server.js +++ b/bin/example/server.js @@ -1,3 +1,5 @@ +/* eslint-disable n/no-missing-import */ + import Fastify from "fastify"; const fastify = Fastify();