openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

.editorconfig (437B)


      1 ; This file is for unifying the coding style for different editors and IDEs.
      2 ; More information at http://editorconfig.org
      3 
      4 root = true
      5 
      6 [*]
      7 end_of_line = lf
      8 insert_final_newline = false
      9 charset = utf-8
     10 tab_width = 4
     11 
     12 [*.php]
     13 indent_style = tab
     14 indent_size = tab
     15 
     16 [*.xml]
     17 indent_style = tab
     18 indent_size = tab
     19 
     20 
     21 [*.js]
     22 indent_style = tab
     23 indent_size = tab
     24 
     25 ; YAML must be indented by 2 spaces
     26 [*.yml]
     27 indent_style = space
     28 indent_size = 2