| 1234567891011121314151617181920212223242526272829 |
- root = true
- [*]
- charset = utf-8
- end_of_line = lf
- insert_final_newline = true
- trim_trailing_whitespace = true
- # Go
- # https://golang.org/cmd/gofmt/
- [{go.mod,*.go}]
- indent_style = tab
- # Shell
- # https://google.github.io/styleguide/shell.xml#Indentation
- [*.{bash,sh,zsh}]
- indent_size = 2
- indent_style = space
- # GNU make
- # https://www.gnu.org/software/make/manual/html_node/Recipe-Syntax.html
- [Makefile]
- indent_style = tab
- # YAML
- # http://yaml.org/spec/1.2/2009-07-21/spec.html#id2576668
- [*.{yaml,yml}]
- indent_size = 2
- indent_style = space
|