Changes between Version 1 and Version 2 of CodingConventions


Ignore:
Timestamp:
Mar 22, 2009, 8:37:32 PM (15 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodingConventions

    v1 v2  
    22
    33Coding conventions are a preffered way of doing things.
     4
     5'''Files'''
     6
     7 * Although Grails can handle both dos (\r\n) and *nix (\r) line ends *nix is preffered.
     8 * It is project policy not to include names in the source files, recognition will be given in better and more visible ways.
     9
     10'''Format'''
     11
     12 * Please set-up your IDE or editor to use a indent of 4 spaces, with no tabs.
     13 * Follow the generally used formatting of code you see in Grails and the project.
     14
     15
     16