37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
// ============================================
|
|
// CONFIGURAÇÕES TAILWIND CSS
|
|
// ============================================
|
|
|
|
"tailwindCSS.validate": false, // DESATIVA validação para remover avisos chatos
|
|
"tailwindCSS.showPixelEquivalents": false,
|
|
|
|
// ⚠️ ATENÇÃO: AVISOS "suggestCanonicalClasses" SÃO BUGS DO PLUGIN
|
|
// O Tailwind CSS IntelliSense está bugado e sugere sintaxe ERRADA.
|
|
//
|
|
// ✅ Sintaxe CORRETA (Tailwind v4):
|
|
// - [var(--brand-color)] ← Use isso!
|
|
// - bg-gradient-to-r ← Use isso!
|
|
//
|
|
// ❌ Sintaxe ERRADA (sugestão bugada):
|
|
// - (--brand-color) ← NÃO funciona!
|
|
// - bg-linear-to-r ← NÃO funciona!
|
|
//
|
|
// Por isso desativamos a validação acima (tailwindCSS.validate: false)
|
|
|
|
// ============================================
|
|
// CONFIGURAÇÕES CSS
|
|
// ============================================
|
|
|
|
"css.validate": true,
|
|
"css.lint.unknownAtRules": "ignore",
|
|
|
|
// ============================================
|
|
// MELHORIAS NO EDITOR
|
|
// ============================================
|
|
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
}
|
|
}
|