Files
wger/.editorconfig
2017-04-21 14:08:23 -04:00

65 lines
788 B
INI

# EditorConfig: http://EditorConfig.org
#
# This is the top-most .editorconfig file; do not search in parent directories.
root = true
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
#
# Javascript
#
[*.js]
indent_size = 2
[{.eslintrc,.eslintignore}]
indent_style = space
indent_size = 2
#
# Python
#
[*.py]
indent_style = space
indent_size = 4
max_line_length = 100
#
# JSON File
#
[*.json]
indent_size = 2
#
# YAML File
#
[*.yml]
indent_size = 2
#
# Structured text
#
[*.md]
trim_trailing_whitespace = false
[*.rst]
indent_style = space
indent_size = 8
[CHANGES.md]
indent_style = space
indent_size = 2
#
# Makefiles
#
[{Makefile, makefile, GNUmakefile}]
indent_style = tab
indent_size = 4