mirror of
https://github.com/zoriya/v10.git
synced 2026-08-04 21:27:10 +00:00
chore(ci): configure noUnknownProperty to allow corner-shape (#1502)
This commit is contained in:
Vendored
+2
@@ -18,6 +18,8 @@
|
||||
"biome.requireConfiguration": true,
|
||||
"editor.defaultFormatter": "biomejs.biome",
|
||||
"js/ts.tsdk.path": "node_modules/typescript/lib",
|
||||
// Built-in CSS validation overlaps Biome; disable it for CSS diagnostics only.
|
||||
"css.validate": false,
|
||||
|
||||
"[astro]": {
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
|
||||
@@ -60,6 +60,11 @@
|
||||
"noArguments": "off"
|
||||
},
|
||||
"correctness": {
|
||||
"noUnknownProperty": {
|
||||
"options": {
|
||||
"ignore": ["corner-shape"]
|
||||
}
|
||||
},
|
||||
"noUnusedVariables": "warn",
|
||||
"noUnusedImports": "warn",
|
||||
"noUnusedFunctionParameters": "off",
|
||||
|
||||
@@ -45,11 +45,9 @@
|
||||
}
|
||||
}
|
||||
|
||||
/* biome-ignore lint/correctness/noUnknownProperty: corner-shape is an emerging CSS spec */
|
||||
@supports (corner-shape: squircle) {
|
||||
.media-minimal-skin .media-button {
|
||||
border-radius: 1rem;
|
||||
/* biome-ignore lint/correctness/noUnknownProperty: corner-shape is an emerging CSS spec */
|
||||
corner-shape: squircle;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user