Add .editorconfig and CONTRIBUTING.md

This commit is contained in:
medmunds
2015-12-02 17:22:02 -08:00
parent d496555813
commit c625b6f12f
2 changed files with 28 additions and 0 deletions

24
.editorconfig Normal file
View File

@@ -0,0 +1,24 @@
# http://editorconfig.org
root = true
# Follow Django conventions for most files
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
# Use 2 spaces for js and text(-like) files
[*.{html,js,json,md,rst,txt,yml}]
indent_size = 2
# Makefiles always use tabs for indentation
[Makefile]
indent_style = tab
# Batch files use tabs for indentation
[*.bat]
indent_style = tab

4
CONTRIBUTING.md Normal file
View File

@@ -0,0 +1,4 @@
Djrill is maintained by its users. Your contributions are encouraged!
Please see [Contributing](https://djrill.readthedocs.org/en/latest/contributing/)
in the Djrill documentation for more information.