hex

hex.git
git clone git://git.lenczewski.org/hex.git
Log | Files | Refs

.editorconfig (510B)


      1 root = true
      2 
      3 [*]
      4 end_of_line = lf
      5 charset = utf-8
      6 trim_trailing_whitespace = true
      7 insert_final_newline = true
      8 
      9 # visual studio editorconfig plugin specific settings
     10 guidelines = 80, 120, 160
     11 
     12 [*.{c,cpp,h,hpp,tpp}]
     13 indent_style = tab
     14 indent_size = 8
     15 
     16 [*.sh]
     17 indent_style = tab
     18 indent_size = 8
     19 
     20 [*.py]
     21 indent_style = space
     22 indent_size = 4
     23 
     24 [*.java]
     25 indent_style = tab
     26 indent_size = 8
     27 
     28 [*.{css,html,js,jsx,ts,tsx}]
     29 indent_style = space
     30 indent_size = 2
     31 
     32 [*.{conf,json,md,txt}]
     33 indent_style = space
     34 indent_size = 2