ui-thing
Version:
CLI used to add Nuxt components to a project
33 lines (31 loc) • 915 B
text/typescript
/**
* VS Code extensions recommendations for Tailwind CSS development.
*/
export const VS_CODE_RECOMMENDATIONS = {
recommendations: [
"vue.volar",
"bradlc.vscode-tailwindcss",
"antfu.iconify",
"formulahendry.auto-close-tag",
"formulahendry.auto-rename-tag",
],
};
/**
* VS Code settings for Tailwind CSS development.
*/
export const VS_CODE_SETTINGS = {
"editor.formatOnSave": true,
"editor.quickSuggestions": { strings: "on" },
"files.associations": { "*.css": "tailwindcss" },
"tailwindCSS.classFunctions": ["tw", "clsx", "tw\\.[a-z-]+"],
"tailwindCSS.experimental.classRegex": [
[
"\\btv\\(\\s*((?:\"(?:\\\\.|[^\"\\\\])*\"|'(?:\\\\.|[^'\\\\])*'|`(?:\\\\.|[^`\\\\])*`|[^)]*)*)\\)",
"[\"']([^\"']*)[\"']",
],
[
"\\btv\\(\\s*((?:\"(?:\\\\.|[^\"\\\\])*\"|'(?:\\\\.|[^'\\\\])*'|`(?:\\\\.|[^`\\\\])*`|[^)]*)*)\\)",
"`([^`]*)`",
],
],
};