Last active
January 27, 2025 17:37
-
-
Save dgwyer/e9a4085ce0bdb2915fd83ae52f5e664e to your computer and use it in GitHub Desktop.
VS Code settings for FastHTML Pythin intellisense
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
{ | |
"tailwindCSS.includeLanguages": { | |
"python": "html", | |
}, | |
"tailwindCSS.experimental.classRegex": [ | |
"\\b[a-zA-Z_]+\\s*=\\s*['\"]([^'\"]*)['\"]", | |
"\"[^\"]+\"\\s*:\\s*\"([^\"]*)\"", | |
"'[^']+'\\s*:\\s*'([^']*)'" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment