fix: theme switching causing constant color transitions, too much shadow on codeblocks in light theme

This commit is contained in:
Oleksandr 2026-02-17 19:02:00 +02:00
parent 8848037c63
commit 5d43f69d69
Signed by: Xanazf
GPG key ID: 821EEC32761AC17C
52 changed files with 8088 additions and 3601 deletions

View file

@ -1,13 +1,16 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
"$schema": "https://biomejs.dev/schemas/2.4.1/schema.json",
"files": {
"includes": ["**", "!!**/dist", "!**/node_modules", "!**/.yarn"]
},
"formatter": {
"enabled": true,
"formatWithErrors": true,
"indentStyle": "space",
"indentWidth": 2,
"lineEnding": "lf",
"lineWidth": 66,
"attributePosition": "multiline"
"lineWidth": 80,
"attributePosition": "auto"
},
"plugins": [],
"linter": {
@ -25,6 +28,14 @@
}
}
},
"html": {
"formatter": {
"enabled": true,
"indentScriptAndStyle": true,
"lineWidth": 80
},
"experimentalFullSupportEnabled": true
},
"javascript": {
"formatter": {
"jsxQuoteStyle": "double",
@ -51,6 +62,15 @@
"cssModules": true
}
},
"json": {
"formatter": {
"enabled": true,
"lineWidth": 80,
"lineEnding": "lf",
"indentStyle": "space",
"indentWidth": 2
}
},
"overrides": [
{
"includes": ["**/*.ts", "**/*.tsx"],
@ -75,21 +95,6 @@
}
}
}
},
{
"includes": ["*.astro"],
"linter": {
"rules": {
"correctness": {
"noUnusedImports": "off",
"noUnusedVariables": "off"
},
"style": {
"useConst": "off",
"useImportType": "off"
}
}
}
}
]
}