47 lines
822 B
INI
47 lines
822 B
INI
# Python.
|
|
[*.py]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 4
|
|
max_line_length = 120
|
|
|
|
# Tom's Obvious Minimal Language.
|
|
[*.toml]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 4
|
|
max_line_length = 120
|
|
|
|
# Markdown.
|
|
[*.md]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 2
|
|
max_line_length = 99
|
|
|
|
# reStructuredText.
|
|
[*.rst]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = space
|
|
indent_size = 3
|
|
max_line_length = 120
|
|
|
|
# Makefile.
|
|
[{Makefile,GNUmakefile}]
|
|
charset = utf-8
|
|
trim_trailing_whitespace = true
|
|
insert_final_newline = true
|
|
indent_style = tab
|
|
indent_size = 4
|
|
max_line_length = 120
|
|
|
|
|