Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 792 Bytes

editor.md

File metadata and controls

31 lines (24 loc) · 792 Bytes

Editor

  1. Any editor may be used. That said, Sublime Text is recommended and used by most of the team.
  2. Each project should setup an EditorConfig that's applied by a supported editor plugin. See below for a recommended baseline config.

EditorConfig

  1. The following config should serve as a baseline and be modified for the project-specific language/framework:

    # EditorConfig: http://editorconfig.org
    
    root = true
    
    [*]
    indent_style = space
    indent_size = 2
    end_of_line = lf
    charset = utf-8
    trim_trailing_whitespace = true
    insert_final_newline = true
    
    [*.md]
    trim_trailing_whitespace = false