Changes between Version 6 and Version 7 of Contributing/CodingStyle


Ignore:
Timestamp:
01/24/2014 07:25:02 PM (10 years ago)
Author:
Cas
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Contributing/CodingStyle

    v6 v7  
    22 
    33== Common == 
    4  * Max line length 127 rather than 79 
     4 * Max line length 119 rather than 79 but ideally keep to 79 
    55 
    66== Python == 
    77Mostly follow [http://www.python.org/dev/peps/pep-0008/ PEP8] with the following exceptions: 
    88 * Line length (see above) 
     9 
     10Code should pass the [https://pypi.python.org/pypi/flake8 flake8] source code checker and in ideal cases [http://www.pylint.org/ Pylint] too.   
    911 
    1012== Javascript ==