Skip to content

Commit

Permalink
fix: ESLint ignore 가 동작하지 않는 부분 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
kimjh96 authored and danah-kim committed Nov 17, 2024
1 parent 687de90 commit 8f35ed6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 4 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ const __dirname = path.resolve();

export default [
{
files: ["**/*.{js,mjs,cjs,ts,mts,jsx,tsx}"],
ignores: ["dist/**/*", "node_modules/**/*"]
files: ["**/*.{js,mjs,cjs,ts,mts,jsx,tsx}"]
},
{
languageOptions: {
Expand All @@ -28,6 +27,9 @@ export default [
},
pluginJs.configs.recommended,
...tseslint.configs.recommended,
{
ignores: ["dist"]
},
pluginImport.flatConfigs.recommended,
pluginReact.configs.flat.recommended,
pluginPrettierRecommended,
Expand Down
2 changes: 0 additions & 2 deletions src/providers/ThemeProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ import { PropsWithChildren, useEffect } from "react";
import { Helmet } from "react-helmet-async";

import createBuilder from "basic-styled/setup/createBuilder";

import ResetStyle from "basic-styled/setup/ResetStyle";

import BasicThemeProvider from "basic-styled/setup/ThemeProvider";

import GlobalStyle from "@components/utils/GlobalStyle";
Expand Down

0 comments on commit 8f35ed6

Please sign in to comment.