github.com/josephspurrier/go-swagger@v0.2.1-0.20221129144919-1f672a142a00/.editorconfig (about)

     1  # top-most EditorConfig file
     2  root = true
     3  
     4  # Unix-style newlines with a newline ending every file
     5  [*]
     6  end_of_line = lf
     7  insert_final_newline = true
     8  indent_style = space
     9  indent_size = 2
    10  trim_trailing_whitespace = true
    11  
    12  # Set default charset
    13  [*.{js,py,go,scala,rb,java,html,css,less,sass,md}]
    14  charset = utf-8
    15  
    16  # Tab indentation (no size specified)
    17  [*.go]
    18  indent_style = tab
    19  
    20  [Makefile*]
    21  indent_style = tab
    22  
    23  [*.md]
    24  trim_trailing_whitespace = false
    25  
    26  # Matches the exact files either package.json or .travis.yml
    27  [{package.json,.travis.yml}]
    28  indent_style = space
    29  indent_size = 2