diff --git a/.gitignore b/.gitignore index a976600..5ab1665 100644 --- a/.gitignore +++ b/.gitignore @@ -47,4 +47,7 @@ next-env.d.ts eslint_report.json # docs -docs \ No newline at end of file +docs + +# editors +.idea/ diff --git a/.prettierrc b/.prettierrc index b2095be..5ed933a 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,4 +1,5 @@ { "semi": false, - "singleQuote": true + "singleQuote": true, + "experimentalTernaries": true } diff --git a/app/layout.tsx b/app/layout.tsx index 0498213..4045408 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -19,11 +19,7 @@ interface RootLayoutProps { children: ReactNode } -export default function RootLayout({ - children, -}: { - children: React.ReactNode -}) { +export default function RootLayout({ children }: RootLayoutProps) { return ( {children}