github.com/telepresenceio/telepresence/v2@v2.20.0-pro.6.0.20240517030216-236ea954e789/.editorconfig (about)

     1  root = true
     2  
     3  [*]
     4  end_of_line = lf
     5  charset = utf-8
     6  trim_trailing_whitespace = true
     7  insert_final_newline = true
     8  
     9  [*.go]
    10  indent_style = tab
    11  ; mimic gofmt's go/printer.printer.funcBody().maxSize
    12  max_line_length = 100
    13  ; mimic gofmt's cmd/gofmt.tabWidth
    14  tab_width = 8
    15  
    16  [{go.mod,go.sum}]
    17  indent_style = tab
    18  
    19  [*.proto]
    20  indent_style = space
    21  indent_size = 2