1# automatically handle text files 2* text=auto 3 4# text files 5*.md text 6*.txt text 7 8# source code files 9*.rs text 10*.c text 11 12# configuration files 13*.yml text 14*.toml text 15 16# compressed files 17*.gz binary 18 19# no end-of-line normalization should take place for integration test text files 20tests/*.txt -text 21