Skip to content

Commit

Permalink
add: lint check command
Browse files Browse the repository at this point in the history
  • Loading branch information
clmntsnr committed Nov 8, 2024
1 parent 1a41ca0 commit 9ffbc25
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v3
- name: Set up Bun
uses: oven-sh/setup-bun@v1
with:
with:SDK_READ_ACCESS_TOKEN
bun-version: latest
- name: Install dependencies
run: bun install
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"build": "remix vite:build",
"dev": "remix vite:dev --host",
"lint": "biome check --fix ./src ./app",
"lint:ci": "biome check --diagnostic-level error ./src",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/dappkit
Submodule dappkit updated 38 files
+1 −0 .gitignore
+ bun.lockb
+0 −1 node_modules/merkl-api
+55 −51 src/components.ts
+34 −0 src/components/VisuallyHidden.tsx
+86 −0 src/components/dapp/Countdown.tsx
+5 −5 src/components/extenders/Dropdown.tsx
+5 −10 src/components/extenders/Group.tsx
+19 −0 src/components/layout/Container.tsx
+0 −19 src/components/layout/Page.tsx
+82 −0 src/components/primitives/Accordion.tsx
+53 −0 src/components/primitives/Bar.tsx
+43 −20 src/components/primitives/Button.tsx
+20 −3 src/components/primitives/Divider.tsx
+20 −0 src/components/primitives/EventBlocker.tsx
+12 −5 src/components/primitives/Hash.tsx
+23 −8 src/components/primitives/Icon.tsx
+1 −0 src/components/primitives/Image.tsx
+31 −7 src/components/primitives/Input.tsx
+3 −2 src/components/primitives/Table.tsx
+37 −10 src/components/primitives/Text.tsx
+23 −0 src/components/primitives/Time.tsx
+55 −14 src/components/primitives/Title.tsx
+1 −1 src/components/primitives/Value.tsx
+100 −25 src/config/themes.ts
+1 −0 src/constants/SCREENS.json
+1 −1 src/context/Dapp.context.tsx
+42 −14 src/context/Theme.context.tsx
+17 −13 src/hooks/theming/OverrideTheme.tsx
+6 −0 src/hooks/theming/useThemableProps.tsx
+22 −4 src/hooks/theming/useThemedVariables.tsx
+30 −0 src/hooks/useClipboard.tsx
+35 −0 src/style.css
+4 −1 src/theming/coloring.ts
+1 −0 src/theming/tailwind.ts
+9 −0 src/utils/event.ts
+48 −30 src/utils/tailwind.ts
+2 −1 src/utils/types.ts

0 comments on commit 9ffbc25

Please sign in to comment.