Skip to content
Snippets Groups Projects
Unverified Commit 55104800 authored by Christian Oliff's avatar Christian Oliff Committed by GitHub
Browse files

Create .editorconfig

Fixes: #9059
It'd be good to add a .editorconfig file so that anyone contributing to Nextcloud can follow the same rules for tabs/spaces, newlines, charsets etc.
Editorconfig (http://editorconfig.org/) is very popular and it's become standard for open-source projects to include one. I based the rules on the current code-base.
parent 686f1931
No related branches found
No related tags found
No related merge requests found
# https://editorconfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = tab
insert_final_newline = true
trim_trailing_whitespace = true
[*.php]
indent_size = 8
[*.md]
trim_trailing_whitespace = false
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment