Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 274 Bytes

CODE_STANDARDS.md

File metadata and controls

25 lines (18 loc) · 274 Bytes

curly brackets to next line:

function () { // }

4 spaces for indentation

each element of objects and arrays go to next line

let array = [ 'something', 'something else' ]

folder names in lower case

return all functions

function () { // return; }