Open justinribeiro opened 6 years ago
Yes we should at least expose a way to disable validation. I propose a setting like:
{
"compilerOptions": {
"plugins": [
{
"name": "typescript-lit-html-plugin",
"css": { "validate": false }
}
]
}
}
The styled plugin has a number of settings that are also supported: https://github.com/Microsoft/typescript-styled-plugin#configuration
@sjmiles noted this in https://github.com/mjbvz/vscode-lit-html/issues/42
With the update to
StyledTemplateLanguageService
, I'm wondering what your thoughts are on updating theTsHtmlPluginConfiguration
interface to be enablevalidate
andlint
configuration options similar to styled? Or if there's a better configuration integration approach I'm not quite seeing.