Skip to content

Commit

Permalink
Add .editorconfig file, configured as per contribution guidelines
Browse files Browse the repository at this point in the history
See https://editorconfig.org/

For emacs

    (package-install 'editorconfig)
    (editorconfig-mode 1)
  • Loading branch information
alanz committed Jan 23, 2020
1 parent fe765af commit 76a0e59
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
; This file is for unifying the coding style for different editors and IDEs.
; More information at http://EditorConfig.org

root = true

[*]
end_of_line = LF

[*]
indent_style = space
indent_size = 2
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 80

0 comments on commit 76a0e59

Please sign in to comment.