Skip to content

akura-co/js-coding-style

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 

Repository files navigation

Js coding style

  • Semicolons: no
  • Indentation
    • 2 spaces
    • no tabs
  • Naming
    • camelCase
    • lower case first for variables
    • upper case first for classes
    • avoid plurals
  • Whitespace
    • in front of ( for anything other than a function call
    • around operators
    • after ,: (if there is no newline)
  • Quotes
    • prefer ' over "
    • avoid when possible
  • Blocks
    • opening braces go on the same line
    • do not use braces with one-line blocks

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published