Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 389 Bytes

File metadata and controls

26 lines (21 loc) · 389 Bytes

#Style Guide

  • Tabs, not spaces

  • Naming conventions

    • Class names PascalCase
    • Method names camelCase
    • Variable names camelCase
  • New line at the end of all files

  • Same line brackets, e.g:

    void func() {
        //code
    }
    

    not

    void func()
    {
        //code
    }
    
  • Use package by feature for project layout.