Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 1.02 KB

File metadata and controls

36 lines (21 loc) · 1.02 KB

Contributing

There are more than one way to contribute, and I will appreciate any way you choose.

  • tell your friends about lepture/editor, let lepture/editor to be known
  • discuss editor, and submit bugs with github issues
  • send patch with github pull request

English and Chinsese issuses are acceptable, but English is prefered.

Pull request and git commit message only accept English, if your commit message is in other language, it will be rejected.

Codebase

The codebase of editor is highly linted, as a way to keep all code written in a particular style for readability. You should follow the code style.

A little hint to make things simple:

  • when you cloned this repo, run npm install
  • check the code style with grunt jshint

Git Help

Something you should know about git.

  • don't add any code on the master branch, create a new one
  • don't add too many code in one pull request, you can't add too many features in one pull request

Hint of git:

$ git branch [featurename]
$ git checkout [featurename]