github.com/sabhiram/gsync@v0.0.0-20180214150410-b9089a1b7f13/.editorconfig (about)

     1  root = true
     2  
     3  ; Unix-style newlines with a newline ending every file
     4  [*]
     5  end_of_line = lf
     6  insert_final_newline = true
     7  trim_trailing_whitespace = true
     8  charset = utf-8
     9  
    10  ; Golang
    11  [*.go]
    12  indent_style = tab
    13  indent_size = 4
    14  
    15  ; Golang
    16  [*.c]
    17  indent_style = space
    18  indent_size = 4
    19  
    20  ; YAML
    21  [*.yaml]
    22  indent_style = space
    23  indent_size = 2