github.com/editorconfig-checker/editorconfig-checker@v0.0.0-20231102090242-ddae3e68851e/.editorconfig (about)

     1  root = true
     2  
     3  [*]
     4  indent_style = space
     5  indent_size = 4
     6  end_of_line = lf
     7  charset = utf-8
     8  trim_trailing_whitespace = true
     9  insert_final_newline = true
    10  
    11  [{*.go,go.mod}]
    12  indent_style = tab
    13  indent_size = unset
    14  
    15  [*.{yaml,yml}]
    16  indent_size = 2
    17  
    18  [*.md]
    19  indent_size = unset
    20  
    21  [*.nix]
    22  indent_size = 2
    23  
    24  [.ecrc]
    25  indent_size = 2
    26  
    27  [Makefile]
    28  indent_style = tab
    29  indent_size = unset