Changes between Version 16 and Version 17 of Dev/DevPractices


Ignore:
Timestamp:
02/04/10 11:58:33 (3 years ago)
Author:
dmartinc
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Dev/DevPractices

    v16 v17  
    2323   * If it's '''not obvious''', add a '''comment'''; 
    2424   * Use '''UTF-8''' as encoding by default for every single file. 
    25    * Please, don't commit any trailing white spaces (see [wiki:Dev/GitWorkflow])! If using Eclipse, !AnyEditTools can help to remove trailing white spaces in all kind of test files. See [/wiki/Dev/Tools#a6.Toolsforadditionalformattinghelp Tools for additional formatting help]. 
     25   * Please, don't commit any trailing white spaces (see [wiki:Dev/GitWorkflow])! If using Eclipse, [/wiki/Dev/Tools#a1.AnyEditToolstoremovetrailingwhitespaces AnyEditTools] can help to remove trailing white spaces in all kind of test files. 
    2626 
    2727 * Python 
     
    3434   * Speak Python [http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html language] 
    3535   * Got new code? '''[wikipedia:Automated_code_review Pylint] it''' before adding it to the repo. 
    36    * There are several tools for Eclipse than can help you to properly format your code and use Pylint, see [/wiki/Dev/Tools#a6.Toolsforadditionalformattinghelp Tools for additional formatting help]. 
     36   * There are several tools for Eclipse than can help you to properly format your code and use Pylint, see [/wiki/Dev/Tools#a2.PyDevcodeformatter PyDev formatter] and [/wiki/Dev/Tools#a3.PylintwithPyDev Pylint with PyDev]. 
    3737 
    3838 * !JavaScript