github.com/zntrio/harp/v2@v2.0.9/.editorconfig (about)

     1  root = true
     2  
     3  [*]
     4  charset = utf-8
     5  
     6  end_of_line = lf
     7  insert_final_newline = true
     8  trim_trailing_whitespace = true
     9  
    10  indent_style = space
    11  indent_size = 4
    12  
    13  [Makefile]
    14  indent_style = tab
    15  
    16  [*.go]
    17  indent_style = tab
    18  
    19  [*.proto]
    20  indent_size = 2
    21  
    22  [*.swift]
    23  indent_size = 4
    24  
    25  [*.tmpl]
    26  indent_size = 2
    27  
    28  [*.js]
    29  indent_size = 2
    30  block_comment_start = /*
    31  block_comment_end = */
    32  
    33  [*.html]
    34  indent_size = 2
    35  
    36  [*.bat]
    37  end_of_line = crlf
    38  
    39  [*.{json,yml}]
    40  indent_size = 2
    41  
    42  [.{babelrc,eslintrc}]
    43  indent_size = 2
    44  
    45  [{Fastfile,.buckconfig,BUCK}]
    46  indent_size = 2
    47  
    48  [*.diff]
    49  indent_size = 1
    50  
    51  [*.m]
    52  indent_size = 1
    53  indent_style = space
    54  block_comment_start = /**
    55  block_comment = *
    56  block_comment_end = */
    57  
    58  [*.java]
    59  indent_size = 4
    60  indent_style = space
    61  block_comment_start = /**
    62  block_comment = *
    63  block_comment_end = */