Publish HTML quickly. https://html.house
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

1.3 KiB

How to contribute

We’re happy you’re considering contributing to HTMLhouse!

It won’t take long to get up to speed on everything. These are our development resources:

  • We keep track of tasks in Phabricator. Feel free to sign up.
  • We accept and respond to bugs here on GitHub.
  • We’re usually in #writeas on freenode, but if not, find us on our Slack channel.

Submitting changes

Please send a pull request off the develop branch with a clear explanation of what you’ve done.

Please follow our coding conventions below and make sure all of your commits are atomic. Larger changes should have commits with more detailed information on what changed, any impact on existing code, rationales, etc.

Coding conventions

We strive for consistency above all. Reading the small codebase should give you a good idea of the conventions we follow.

Go

  • We use go fmt before committing anything
  • We aim to document all exported entities
  • Go files are broken up into logical functional components
  • General functions are extracted into modules when possible

Javascript

  • We use tabs?!?