sourcebot/.vscode/settings.json

22 lines
511 B
JSON
Raw Normal View History

2024-10-17 20:31:18 +00:00
{
"files.associations": {
"*.json": "jsonc",
"index.json": "json"
},
"eslint.workingDirectories": [
{
"pattern": "./packages/*/"
}
],
// @see : https://cva.style/docs/getting-started/installation#intellisense
"tailwindCSS.experimental.classRegex": [
[
"cva\\(([^)]*)\\)",
"[\"'`]([^\"'`]*).*?[\"'`]"
],
[
"cx\\(([^)]*)\\)",
"(?:'|\"|`)([^']*)(?:'|\"|`)"
]
]
2024-10-17 20:31:18 +00:00
}