Last active
August 2, 2023 10:45
-
-
Save lukaszkrzywizna/ef99228435c51b26eb0cf42c4be97cbe to your computer and use it in GitHub Desktop.
tailwind css for fable
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"includeLanguages": { | |
"ftl": "html", | |
"jinja": "html", | |
"jinja2": "html", | |
"smarty": "html", | |
"tmpl": "gohtml", | |
"cshtml": "html", | |
"vbhtml": "html", | |
"razor": "html", | |
"fsharp": "javascript" | |
}, | |
"files": { | |
"exclude": [ | |
"**/.git/**", | |
"**/node_modules/**", | |
"**/.hg/**", | |
"**/.svn/**" | |
] | |
}, | |
"emmetCompletions": false, | |
"classAttributes": ["class", "className", "ngClass"], | |
"colorDecorators": false, | |
"showPixelEquivalents": true, | |
"rootFontSize": 16, | |
"hovers": true, | |
"suggestions": true, | |
"codeActions": true, | |
"validate": true, | |
"lint": { | |
"invalidScreen": "error", | |
"invalidVariant": "error", | |
"invalidTailwindDirective": "error", | |
"invalidApply": "error", | |
"invalidConfigPath": "error", | |
"cssConflict": "warning", | |
"recommendedVariantOrder": "warning" | |
}, | |
"experimental": { | |
"configFile": null, | |
"classRegex": [ | |
"prop\\.className\\s*\"([^\"]*)\"", | |
"[[|;|\\s]\\s*\"([^\"]*)\"" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment