mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 23:13:02 +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 = {
|
export const conf: languages.LanguageConfiguration = {
|
||||||
comments: {
|
comments: {
|
||||||
lineComment: '//',
|
lineComment: '#',
|
||||||
blockComment: ['/*', '*/']
|
blockComment: ['/*', '*/']
|
||||||
},
|
},
|
||||||
brackets: [
|
brackets: [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue