Skip to content

Commit

Permalink
refactor: ♻️ bump @jimmy.codes/eslint-config to v3.3.0 (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimmy-guzman authored Nov 1, 2024
1 parent c4b8fdb commit c779582
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 24 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
route-tree.gen.ts
Binary file modified bun.lockb
Binary file not shown.
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"prettier": "@jimmy.codes/prettier-config",
"dependencies": {
"@tanstack/react-query": "5.59.16",
"@tanstack/react-router": "1.77.9",
"@tanstack/react-router": "1.78.0",
"clsx": "2.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
Expand All @@ -36,20 +36,20 @@
"@iconify-json/logos": "1.2.3",
"@iconify-json/lucide": "1.2.11",
"@iconify/tailwind": "1.1.3",
"@jimmy.codes/eslint-config": "3.2.1",
"@jimmy.codes/eslint-config": "3.3.0",
"@jimmy.codes/prettier-config": "1.1.0",
"@playwright/test": "1.48.2",
"@storybook/addon-a11y": "8.4.0",
"@storybook/addon-essentials": "8.4.0",
"@storybook/addon-interactions": "8.4.0",
"@storybook/addon-links": "8.4.0",
"@storybook/addon-themes": "8.4.0",
"@storybook/react": "8.4.0",
"@storybook/react-vite": "8.4.0",
"@storybook/addon-a11y": "8.4.1",
"@storybook/addon-essentials": "8.4.1",
"@storybook/addon-interactions": "8.4.1",
"@storybook/addon-links": "8.4.1",
"@storybook/addon-themes": "8.4.1",
"@storybook/react": "8.4.1",
"@storybook/react-vite": "8.4.1",
"@tailwindcss/typography": "0.5.15",
"@tanstack/react-query-devtools": "5.59.16",
"@tanstack/router-devtools": "1.77.9",
"@tanstack/router-vite-plugin": "1.77.7",
"@tanstack/router-devtools": "1.78.0",
"@tanstack/router-vite-plugin": "1.78.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
Expand All @@ -63,18 +63,18 @@
"@vitest/ui": "2.1.4",
"autoprefixer": "10.4.20",
"daisyui": "4.12.14",
"eslint": "9.13.0",
"eslint-plugin-storybook": "0.10.1",
"eslint": "9.14.0",
"eslint-plugin-storybook": "0.10.2",
"gitzy": "5.4.0",
"happy-dom": "15.7.4",
"happy-dom": "15.8.0",
"is-ci": "3.0.1",
"jiti": "2.3.3",
"knip": "5.36.0",
"jiti": "2.4.0",
"knip": "5.36.1",
"lefthook": "1.8.2",
"msw": "2.6.0",
"postcss": "8.4.47",
"prettier": "3.3.3",
"storybook": "8.4.0",
"storybook": "8.4.1",
"tailwindcss": "3.4.14",
"turbo": "2.2.3",
"typescript": "5.6.3",
Expand Down
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { createRoot } from "react-dom/client";
import queryClient from "./query.client";
import { router } from "./router";

const root = document.getElementById("root");
const root = document.querySelector("#root");

if (root) {
createRoot(root).render(
Expand Down
10 changes: 4 additions & 6 deletions src/route-tree.gen.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* prettier-ignore-start */

/* eslint-disable */

// @ts-nocheck

// noinspection JSUnusedGlobalSymbols

// This file is auto-generated by TanStack Router
// This file was automatically generated by TanStack Router.
// You should NOT make any changes in this file as it will be overwritten.
// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.

// Import Routes

Expand Down Expand Up @@ -46,7 +46,7 @@ export interface FileRoutesByTo {
}

export interface FileRoutesById {
"__root__": typeof rootRoute;
__root__: typeof rootRoute;
"/": typeof IndexRoute;
}

Expand All @@ -71,8 +71,6 @@ export const routeTree = rootRoute
._addFileChildren(rootRouteChildren)
._addFileTypes<FileRouteTypes>();

/* prettier-ignore-end */

/* ROUTE_MANIFEST_START
{
"routes": {
Expand Down

0 comments on commit c779582

Please sign in to comment.