keyboard

My QMK keyboard layouts
git clone git://gtms.dev/keyboard
Log | Files | Refs | README | LICENSE

.editorconfig (581B)


      1 # EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
      2 # editorconfig.org
      3 root = true
      4 
      5 [*]
      6 indent_style = space
      7 indent_size = 4
      8 
      9 # We recommend you to keep these unchanged
     10 charset = utf-8
     11 trim_trailing_whitespace = true
     12 insert_final_newline = true
     13 
     14 [*.md]
     15 trim_trailing_whitespace = false
     16 indent_size = 4
     17 
     18 [{qmk,*.py}]
     19 charset = utf-8
     20 max_line_length = 200
     21 
     22 # Make these match what we have in .gitattributes
     23 [*.mk]
     24 end_of_line = lf
     25 indent_style = tab
     26 
     27 [Makefile]
     28 end_of_line = lf
     29 indent_style = tab
     30 
     31 [*.sh]
     32 end_of_line = lf