language-configuration.json 461 B

123456789101112131415161718192021222324
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. {
  5. "comments": {
  6. "lineComment": "//"
  7. },
  8. "brackets": [
  9. ["(", ")"],
  10. ["[", "]"],
  11. ["{", "}"]
  12. ],
  13. "autoClosingPairs": [
  14. ["(", ")"],
  15. ["[", "]"],
  16. ["{", "}"]
  17. ],
  18. "surroundingPairs": [
  19. ["(", ")"],
  20. ["[", "]"],
  21. ["{", "}"]
  22. ]
  23. }