Skip to content

Latest commit

 

History

History
36 lines (25 loc) · 902 Bytes

File metadata and controls

36 lines (25 loc) · 902 Bytes

Build Status

Development

Runs on NodeJS using Socket.IO.

Install all node modules

npm install

Start up app

node app.js

Editing files

Do not edit files in public/css. Edit the files in sass/ since they compile to the CSS in public/css.

Frontend scripts are located in public/js.

Best Practices

Use $unit in CSS for calculating dimensions. We use 1rem as the base unit, so please don't mix in px.

Alphabetize all CSS properties.

Use single quotes in JS and CSS. Use double quotes in HTML.

Line wrap is 80 characters.

Format JS files using JSFormat.

{
  "max_preserve_newlines": 2,
  "wrap_line_length": 80,
  "format_on_save": true,
  "ignore_sublime_settings": false,
  "end_with_newline": true
}