|
"comments": { |
|
"lineComment": "//", |
|
"blockComment": ["/*", "*/"] |
|
}, |
Following this format gives me a warning:
That is because at some point, the lineComment property got expanded from being just a string to being an object with comment and noIndent property.
https://github.com/microsoft/vscode/blob/d2894816734dc9141885b802805801b67d70e6e9/src/vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint.ts#L549C5-L565
vscode-docs/api/language-extensions/language-configuration-guide.md
Lines 28 to 31 in 0a4ca79
Following this format gives me a warning:
That is because at some point, the
lineCommentproperty got expanded from being just astringto being anobjectwithcommentandnoIndentproperty.https://github.com/microsoft/vscode/blob/d2894816734dc9141885b802805801b67d70e6e9/src/vs/workbench/contrib/codeEditor/common/languageConfigurationExtensionPoint.ts#L549C5-L565