Update Deps #23
Annotations
1 error
|
Auto PR
Unexpected error: ╭───────────────────────────────────────╮
│ 🥊 lefthook v1.13.6 hook: pre-commit │
╰───────────────────────────────────────╯
┃ fix ❯
$ biome check . --fix && bun prettier --write package.json
biome.jsonc:2:14 deserialize ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
i The configuration schema version does not match the CLI version 2.3.0
1 │ {
> 2 │ "$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3 │ "vcs": {
4 │ "enabled": true,
i Expected: 2.3.0
Found: 2.2.5
i Run the command biome migrate to migrate the configuration file.
src/global.css:6:3 suppressions/unused ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
! Suppression comment has no effect. Remove the suppression or make sure you are suppressing the correct rule.
5 │ @plugin "daisyui/theme" {
> 6 │ /* biome-ignore lint/correctness/noUnknownProperty: daisyui */
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7 │ name: "light";
8 │ --color-primary: #00d372;
src/global.css:2:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
× Tailwind-specific syntax is disabled.
1 │ @import "tailwindcss";
> 2 │ @plugin "@tailwindcss/typography";
│ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3 │ @plugin "daisyui";
4 │
i Enable `tailwindDirectives` in the css parser options, or remove this if you are not using Tailwind CSS.
src/global.css:3:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
× Tailwind-specific syntax is disabled.
1 │ @import "tailwindcss";
2 │ @plugin "@tailwindcss/typography";
> 3 │ @plugin "daisyui";
│ ^^^^^^^^^^^^^^^^^
4 │
5 │ @plugin "daisyui/theme" {
i Enable `tailwindDirectives` in the css parser options, or remove this if you are not using Tailwind CSS.
src/global.css:5:2 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
× Tailwind-specific syntax is disabled.
3 │ @plugin "daisyui";
4 │
> 5 │ @plugin "daisyui/theme" {
│ ^^^^^^^^^^^^^^^^^^^^^^
6 │ /* biome-ignore lint/correctness/noUnknownProperty: daisyui */
7 │ name: "light";
i Enable `tailwindDirectives` in the css parser options, or remove this if you are not using Tailwind CSS.
src/global.css:5:25 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
× Expected a qualified rule, or an at rule but instead found '{'.
3 │ @plugin "daisyui";
4 │
> 5 │ @plugin "daisyui/theme" {
│ ^
6 │ /* biome-ignore lint/correctness/noUnknownProperty: daisyui */
7 │ name: "light";
i Expected a qualified rule, or an at rule here.
3 │ @plugin "daisyui";
4 │
> 5 │ @plugin "daisyui/theme" {
│ ^
6 │ /* biome-ignore lint/correctness/noUnknownProperty: daisyui */
7 │ name: "light";
src/global.css:7:9 parse ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
× Unexpected value or character.
5 │ @plugin "daisyui/theme" {
6 │ /* biome-ignore lint/correctness/noUnknownProperty: daisyui */
> 7 │ name: "light";
│ ^^^^^^^
8 │ --color-primary: #00d372;
9 │ }
i Expected one of:
- hover
- focus
- active
- first-child
- last-child
- nth-child
- nth-last-child
- first-of-type
- last-of-type
- nth-of-type
- nth-last-of-type
- only-child
- only-of-type
- checked
- disabled
- enabled
- required
- optional
- valid
- invalid
- in-range
- out-of-range
- read-only
- read-write
- placeholder-shown
- default
- checked
- inde
|