Skip to content

Commit

Permalink
style: remove comments from JSON file
Browse files Browse the repository at this point in the history
  • Loading branch information
lars-reimann committed Apr 7, 2023
1 parent 097911d commit 906e7bd
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions DSL-langium/language-configuration.json
Original file line number Diff line number Diff line change
@@ -1,30 +1,25 @@
{
"comments": {
// symbol used for single line comment. Remove this entry if your language does not support line comments
"lineComment": "//",
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
"blockComment": [ "/*", "*/" ]
},
// symbols used as brackets
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
// symbols that are auto closed when typing
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
],
// symbols that can be used to surround a selection
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""],
["'", "'"]
]
}
}

0 comments on commit 906e7bd

Please sign in to comment.