mirror of
https://github.com/gleam-lang/gleam.git
synced 2025-12-23 09:47:08 +00:00
14 lines
606 B
Text
14 lines
606 B
Text
# We want fancy syntax highlighting on GitHub, though GitHub doesn't know how
|
|
# to speak Gleam. Until it does (maybe one day!) we'll tell GitHub that these
|
|
# files are Rust, which has a similar enough syntax for the highlighting to
|
|
# work in most cases.
|
|
# The only caveat is that we need to add a `;` after each use of the `type`
|
|
# keyword as our type syntax is different to theirs in a way that confuses
|
|
# GitHub.
|
|
*.gleam linguist-language=Rust
|
|
|
|
# Erlang files generated by the Gleam compiler
|
|
*/gen/*/*.erl linguist-generated=true
|
|
|
|
# Generate Cap'n Proto code
|
|
src/bindata_capnp.rs linguist-generated=true
|