running-tools

A collection of tools for runners and their coaches
git clone https://git.ashermorgan.net/running-tools/
Log | Files | Refs | README

.editorconfig (336B)


      1 # https://editorconfig.org
      2 
      3 root = true
      4 
      5 [*]
      6 charset = utf-8
      7 end_of_line = lf
      8 indent_style = space
      9 indent_size = 2
     10 insert_final_newline = true
     11 trim_trailing_whitespace = true
     12 
     13 [*.{js,jsx,ts,tsx,vue}]
     14 indent_style = space
     15 indent_size = 2
     16 end_of_line = lf
     17 trim_trailing_whitespace = true
     18 insert_final_newline = true
     19 max_line_length = 100