Changes between Version 1 and Version 2 of CodingConventions
- Timestamp:
- Mar 22, 2009, 8:37:32 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingConventions
v1 v2 2 2 3 3 Coding 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