Files
wger/.editorconfig
2020-08-10 23:18:41 +02:00

58 lines
687 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_size = 2
#
# Python
#
[*.py]
max_line_length = 100
#
# JSON File
#
[*.json]
indent_size = 2
#
# YAML File
#
[*.yml]
indent_size = 2
#
# Structured text and Markdown
#
[*.md]
trim_trailing_whitespace = false
indent_size = 2
[*.rst]
indent_size = 4
#
# Makefiles
#
[{Makefile, makefile, GNUmakefile}]
indent_style = tab
indent_size = 4