mirror of https://github.com/django/django.git
Added note to coding-style.txt about how we should NOT be religious about line lengths.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17539 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7ecb6813c9
commit
9fa536dc4f
|
@ -1,5 +1,5 @@
|
|||
============
|
||||
Coding Style
|
||||
Coding style
|
||||
============
|
||||
|
||||
Please follow these coding standards when writing code for inclusion in Django.
|
||||
|
@ -13,6 +13,12 @@ Python style
|
|||
area, but remember that :pep:`8` is only a guide, so respect the style of
|
||||
the surrounding code as a primary goal.
|
||||
|
||||
One big exception to :pep:`8` is our preference of longer line lengths.
|
||||
We're well into the 21st Century, and we have high-resolution computer
|
||||
screens that can fit way more than 79 characters on a screen. Don't limit
|
||||
lines of code to 79 characters if it means the code looks significantly
|
||||
uglier or is harder to read.
|
||||
|
||||
* Use four spaces for indentation.
|
||||
|
||||
* Use underscores, not camelCase, for variable, function and method names
|
||||
|
|
Loading…
Reference in New Issue