Skip to content

Commit 0d7d58c

Browse files
committed
update biome
1 parent 16ed836 commit 0d7d58c

File tree

6 files changed

+59
-52
lines changed

6 files changed

+59
-52
lines changed

biome.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.1.2/schema.json",
33
"files": {
4-
"ignore": [
5-
"examples/official-site/pgconf/**",
6-
"tests/end-to-end/test-results/**"
4+
"includes": [
5+
"**",
6+
"!examples/official-site/pgconf/**",
7+
"!tests/end-to-end/test-results/**"
78
],
89
"ignoreUnknown": true
910
},

examples/CRUD - Authentication/www/css/prism-tabler-theme.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,14 @@
7272
}
7373

7474
.token {
75-
transition: .3s;
75+
transition: 0.3s;
7676
}
7777

7878
code::selection,
7979
code ::selection {
8080
background: var(--tblr-yellow);
8181
color: var(--tblr-gray-900);
82-
border-radius: .1em;
82+
border-radius: 0.1em;
8383
}
8484

8585
code .token.keyword::selection,

examples/official-site/assets/highlightjs-and-tabler-theme.css

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
--tblr-border-color-translucent: hsla(225deg 27% 19% / 0.7);
2121

2222
/* Text secondary RGB */
23-
--tblr-text-secondary-rgb: 204, 209, 217; /* RGB equivalent of hsl(225, 15%, 80%) */
23+
--tblr-text-secondary-rgb:
24+
204, 209, 217; /* RGB equivalent of hsl(225, 15%, 80%) */
2425

2526
/* Code colors */
2627
--tblr-code-color: hsl(225deg 45.4% 76.93%); /* Light code text for dark theme */
@@ -40,10 +41,10 @@
4041
--tblr-link-hover-color: hsl(212, 70%, 85%) !important; /* Supernova */
4142

4243
/* Ethereal shadows */
43-
--tblr-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 15px
44-
rgba(66, 153, 225, 0.15);
45-
--tblr-box-shadow-dropdown: 0px 8px 24px rgba(0, 0, 0, 0.25), 1px 9px 20px
46-
rgba(174, 62, 201, 0.15);
44+
--tblr-box-shadow:
45+
0 2px 4px rgba(0, 0, 0, 0.2), 0 0 15px rgba(66, 153, 225, 0.15);
46+
--tblr-box-shadow-dropdown:
47+
0px 8px 24px rgba(0, 0, 0, 0.25), 1px 9px 20px rgba(174, 62, 201, 0.15);
4748

4849
/* Pure white emphasis */
4950
--tblr-emphasis-color: #ffffff;

examples/using react and other custom scripts and styles/style.css

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,21 @@
1818
@keyframes neon-glow {
1919
0%,
2020
100% {
21-
text-shadow: 0 0 10px #fa2dd1, 0 0 20px #b30890, 2px 3px 30px #ff00cc;
21+
text-shadow:
22+
0 0 10px #fa2dd1,
23+
0 0 20px #b30890,
24+
2px 3px 30px #ff00cc;
2225
}
2326
50% {
24-
text-shadow: 0 0 1px #e48fd3, 0 0 2px #ca28aa, 0 0 8px #ff00cc;
27+
text-shadow:
28+
0 0 1px #e48fd3,
29+
0 0 2px #ca28aa,
30+
0 0 8px #ff00cc;
2531
}
2632
}
2733

2834
#funky_text:hover {
29-
animation: neon-glow .5s ease-in-out infinite;
35+
animation: neon-glow 0.5s ease-in-out infinite;
3036
}
3137

3238
#funky_text * {

package-lock.json

Lines changed: 36 additions & 37 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
},
1313
"license": "MIT",
1414
"devDependencies": {
15-
"@biomejs/biome": "^1.9.4"
15+
"@biomejs/biome": "^2.1.2"
1616
}
1717
}

0 commit comments

Comments
 (0)