mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:10:12 +01:00
A lot of the JSON we use is parsed by VSCode or other systems that are happy to have comments in them, and we should retain a license header there. We can exclude specific files where this is a problem. I think the `package.json` and generated lock file from it are two such cases where we can't have the license header, but we can directly exclude more as needed. This should help make sure that when we *do* have a license header in a JSON file it stays up to date and is formatted canonically.
23 lines
594 B
JSON
23 lines
594 B
JSON
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
{
|
|
"name": "carbon-lang",
|
|
"build": {
|
|
"dockerfile": "../docker/ubuntu2204/base/Dockerfile"
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"bazelbuild.vscode-bazel",
|
|
"bierner.github-markdown-preview",
|
|
"daohong-emilio.yash",
|
|
"esbenp.prettier-vscode",
|
|
"llvm-vs-code-extensions.vscode-clangd",
|
|
"ms-python.python"
|
|
]
|
|
}
|
|
}
|
|
}
|