瀏覽代碼

add syntax highlighting for `x-macro` files (#4205)

This tells Github to detect files having the extension .def as C++
files, which ensures that these files get syntax highlighted prpperly.

I'm not sure whether more files like these are present throughout the
repo. FWIW, it can also be configured to do other things, such as detect
generated, vendored files and exclude these from the Github stats.

See
https://github.com/github-linguist/linguist/blob/master/docs/overrides.md.
Brymer Meneses 1 年之前
父節點
當前提交
a227ea8074
共有 1 個文件被更改,包括 7 次插入0 次删除
  1. 7 0
      .gitattributes

+ 7 - 0
.gitattributes

@@ -0,0 +1,7 @@
+# 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
+
+# This tells Github to detect files having the extension `.def` as `C++` files, which
+# ensures that these files get syntax highlighted properly.
+*.def linguist-language=C++