美文网首页
编辑器规范配置.editConfig

编辑器规范配置.editConfig

作者: Adoins | 来源:发表于2019-03-15 15:49 被阅读0次
    
    # A special property that should be specified at the top of the file outside of
    # any sections. Set to true to stop .editor config file search on current file
    root = true
    
    [*]
    # Indentation style
    # Possible values - tab, space
    indent_style = space
    
    # Indentation size in single-spaced characters
    # Possible values - an integer, tab
    indent_size = 2
    
    # Line ending file format
    # Possible values - lf, crlf, cr
    end_of_line = lf
    
    # File character encoding
    # Possible values - latin1, utf-8, utf-16be, utf-16le
    charset = utf-8
    
    # Denotes whether to trim whitespace at the end of lines
    # Possible values - true, false
    trim_trailing_whitespace = true
    
    # Denotes whether file should end with a newline
    # Possible values - true, false
    insert_final_newline = true
    

    相关文章

      网友评论

          本文标题:编辑器规范配置.editConfig

          本文链接:https://www.haomeiwen.com/subject/tgqrmqtx.html