site

personal website, served at mordaunt.dev/site
Log | Files | Refs

.editorconfig (448B)


      1 # https://editorconfig.org
      2 
      3 # this file is the top-most editorconfig file
      4 root = true
      5 
      6 # all files
      7 [*]
      8 charset = utf-8
      9 end_of_line = lf
     10 indent_style = space
     11 indent_size = 4
     12 insert_final_newline = true
     13 trim_trailing_whitespace = true
     14 
     15 # markdown files
     16 [*.md]
     17 insert_final_newline = false
     18 trim_trailing_whitespace = false
     19 
     20 # configuration files
     21 [*.toml]
     22 indent_size = 2
     23 
     24 # web files
     25 [*.{html,css,scss}]
     26 indent_size = 2
     27 
     28 [Makefile]
     29 indent_style = tab