- For every new feature of the give milestone, branch from that milestone's branch.
- When done, merge that feature branch into the milestone branch.
- When milestone is complete, merge it into master.
These PRs are more than welcome! However, it is recommended you open an issue before opening a PR so that others know you are working on that task, and you can get valuable insights from everyone about it.
The linting setup prevents files with errors being committed. Adding eslint-disable
comments or changing .eslintrc.json
is discouraged (please raise an issue if you want to do so.)
If you're using VS Code refer here to setup an automatic build setup. Other users may manually run npm run build
in there terminal to build the files into the dist/
folder.
- Check all "TODO" comments and for each, resolve it/raise an issue about it and then remove it.
- Remove/comment
console.log
s/console.dir
s from all JS files.Run Replace function to remove all tab chars at the end of lines -\t+$
Can cause problems like this one - Update the change log in options.html.
- Make sure that the update fixes all the bugs listed for its milestone number.
- Check for an update to quill version, and replace the
min.js
andsnow.css
files in our codebase. Verify that this does not break any existing RTE logic. - Run UI tests (Jest+Puppeteer).
- Update MODE to production in webpack config js before final build, and do build once.
- Make sure to reply to all people on the support page as well as on the official email ([email protected]), whose errors have been fixed in this updated version.
- Update new cards (put them in their respective columns) on the main project for the new issues that were filed while the development. This helps have laser sharp focus for the next update. (Also delete the column that was being used for this update.)
- Upload the compressed zipped file under Releases and
the uncompressed files to master branch of codebase.useless if I keep committing code frequently enough - Update the known bugs list
Please follow the following conventions:
- All class names in HTML must be in small case. Multiple words should be separated by underscore.
- Snippet parts should be referred to as "name" and "body" respectively.
- All variables names related to a HTML Node should EITHER have $ at the start of their name OR contain the word "node" (not elm) in their name.