Skip to content
Snippets Groups Projects
Select Git revision
  • cffbd3c59b757c0a63709bd4ce6ccbd59833f4f7
  • master default
  • v0.6.9
  • v0.6.8
  • v0.6.7
  • v0.6.6
  • v0.6.5
  • v0.6.4
  • v0.6.2
9 results

.editorconfig

  • user avatar
    Luis Dekant authored
    Made some more changes to the basic script.
    
    Small change to snapping (even though it will deprecate in case autolock works).
    
    Added a checklist for autolock with
    44e0bf34
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .editorconfig 819 B
    # EditorConfig is awesome: http://EditorConfig.org
    
    # top-most EditorConfig file
    root = true
    
    # Unix-style newlines with a newline ending every file
    [*]
    end_of_line = lf
    insert_final_newline = true
    trim_trailing_whitespace = true
    
    # Matches multiple files with brace expansion notation
    # Set default charset
    [*.{js,py}]
    charset = utf-8
    
    # 4 space indentation
    [*.py]
    indent_style = space
    indent_size = 4
    
    # 4 space indentation
    [*.bas,*.inc]
    indent_style = space
    indent_size = 4
    
    [*.md]
    trim_trailing_whitespace = false
    
    # Tab indentation (no size specified)
    [Makefile]
    indent_style = tab
    
    # Indentation override for all JS under lib directory
    [lib/**.js]
    indent_style = space
    indent_size = 2
    
    # Matches the exact files either package.json or .travis.yml
    [{package.json,.travis.yml}]
    indent_style = space
    indent_size = 2