git.lukeshu.com/go/lowmemjson@v0.3.9-0.20230723050957-72f6d13f6fb2/.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  
    12  [{go.mod,go.sum}]
    13  indent_style = tab
    14  
    15  [Makefile]
    16  ; If somehow this gets set to not-tab, then the resulting Makefile
    17  ; won't work.
    18  indent_style = tab
    19  
    20  [*.md]
    21  ; Emacs markdown-mode gets mixed tabs/spaces wrong, and so I have zero
    22  ; faith that any other tool gets it right.
    23  indent_style = space
    24  
    25  [*.yml]
    26  indent_style = space
    27  indent_size = 2