Skip to content

Commit

Permalink
Format and lint
Browse files Browse the repository at this point in the history
  • Loading branch information
arkadiuszbachorski committed Jul 9, 2024
1 parent 730a651 commit ee90d7d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,3 @@ jobs:
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET='${{ secrets.NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET }}'
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID='${{ secrets.NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID }}'
NEXT_PUBLIC_FIREBASE_APP_ID='${{ secrets.NEXT_PUBLIC_FIREBASE_APP_ID }}'
4 changes: 2 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ module.exports = {
'!**/node_modules/**',
'!**/.storybook/**',
'!**/tailwind.config.ts',
'!**/*.stories.tsx'
]
'!**/*.stories.tsx',
],
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {
getCoreRowModel,
useReactTable,
} from '@tanstack/react-table'
import { cn } from '../../utils/className'
import {
Table,
TableBody,
Expand All @@ -21,7 +22,6 @@ import {
TableHeader,
TableRow,
} from '../Table'
import { cn } from '../../utils/className'

interface DataTableProps<TData, TValue> {
columns: Array<ColumnDef<TData, TValue>>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
// SPDX-License-Identifier: MIT
//
'use client'
import { type ReactNode } from 'react'
import { Menu } from 'lucide-react'

Check warning on line 9 in packages/design-system/src/molecules/DashboardLayout/DashboardLayout.tsx

View check run for this annotation

Codecov / codecov/patch

packages/design-system/src/molecules/DashboardLayout/DashboardLayout.tsx#L9

Added line #L9 was not covered by tests
import { type ReactNode } from 'react'
import { Button } from '../../components/Button'
import { cn } from '../../utils/className'
import { useOpenState } from '../../utils/useOpenState'

Check warning on line 13 in packages/design-system/src/molecules/DashboardLayout/DashboardLayout.tsx

View check run for this annotation

Codecov / codecov/patch

packages/design-system/src/molecules/DashboardLayout/DashboardLayout.tsx#L11-L13

Added lines #L11 - L13 were not covered by tests
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}
],
"paths": {
"@/*": ["./*"],
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
Expand Down

0 comments on commit ee90d7d

Please sign in to comment.