mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 11:35:40 +01:00
Replace // with # for line comments
The Terraform HCL documentation states that the # is the preferred and default setting for single line comments: https://www.terraform.io/docs/language/syntax/configuration.html#comments
This commit is contained in:
parent
1b8581c9aa
commit
e877a4355d
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ import type { languages } from '../fillers/monaco-editor-core';
|
|||
|
||||
export const conf: languages.LanguageConfiguration = {
|
||||
comments: {
|
||||
lineComment: '//',
|
||||
lineComment: '#',
|
||||
blockComment: ['/*', '*/']
|
||||
},
|
||||
brackets: [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue