Skip to content

ZMYaro/color-blind

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

94 Commits
 
 
 
 
 
 

Repository files navigation

Color Blind

Code styling

  • Commits should follow standard Git commit guidelines.
    • Commits should fit in the sentence, “If applied, this commit will ___.”
  • Code will be intended with tabs, not spaces.
  • Opening curly braces will be on the same line as control structures (if, switch, for, function, etc.), separated with a space, and never on the next line.
  • Function and variable names will be in camelCase.
  • Constants will be in ALL_CAPS.
  • Object types will be in UpperCamelCase.
  • Operators will have spaces on both sides.
  • Functions should have documentation strings. For example:
/**
 * Adds two numbers.
 * @param {Number} a - The first number to be added
 * @param {Number} b - The second number to be added
 * @returns {Number} The sum of a and b
 */
function sum(a, b) { ... }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published