ansible/roles/nrpe/.editorconfig

46 lines
796 B
INI

# https://editorconfig.org/
root = true
[*]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
end_of_line = lf
charset = utf-8
# Docstrings and comments use max_line_length = 79
[*.py]
insert_final_newline = true
max_line_length = 119
# Use 2 spaces for the HTML files
[*.html]
indent_size = 2
# Use 2 spaces for the Markdown files
[*.md]
indent_size = 2
insert_final_newline = true
# The JSON files contain newlines inconsistently
[*.json]
indent_size = 2
# Makefiles always use tabs for indentation
[Makefile]
indent_style = tab
insert_final_newline = true
# Batch files use tabs for indentation
[*.bat]
indent_style = tab
insert_final_newline = true
[docs/**.txt]
insert_final_newline = true
max_line_length = 79
[*.yml]
indent_size = 2
insert_final_newline = true