summaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorRamiro Morales <cramm0@gmail.com>2016-06-11 13:16:24 -0300
committerTim Graham <timograham@gmail.com>2016-06-13 10:41:56 -0400
commitd43c91e134064df0fec77c6ebdcd399d6c72866f (patch)
tree3cc9ece2cf11398bc733f4ba02713ee960d2680c /.editorconfig
parentcee534228cddd6d38a5773f32ad53cc8ec4b504d (diff)
downloaddjango-d43c91e134064df0fec77c6ebdcd399d6c72866f.tar.gz
Added Python max_line_length to .editorconfig.
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
index 30d6fcc1e3..3cd29dd7a3 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -10,6 +10,10 @@ trim_trailing_whitespace = true
end_of_line = lf
charset = utf-8
+# Docstrings and comments use max_line_length = 79
+[*.py]
+max_line_length = 119
+
# Use 2 spaces for the HTML files
[*.html]
indent_size = 2