Thank you for being interested in contributing to the development of SmartSweeper.
We ask that all contributors follow our code of conduct. Please report unacceptable behavior to [email protected].
- Please check existing issues to make sure the bug hasn't already been reported. If it has and the issue is still open, please add a new comment to the existing issue.
- If the bug hasn't been reported, create a new issue by filling in the bug report template. Please include as much information as you can.
- Please check existing issues to make sure that no one else has suggested the same enhancement. If someone has and the issue is still open, please add a new comment to the existing issue.
- If the suggestion hasn't already been made, please follow these guidelines.
There are three styles currently in use:
index.js
,smartcashapi.js
, andrpc-client.js
more-or-less follow the Electron style guidelines- The other JavaScript files in general mostly follow the W3Schools style guide.
- The file and folder structure in
/app
follows the John Papa's Angular 1 style guide.
Going forward, all JavaScript will use the W3Schools style with an exception:
- Conditionals:
if (time < 20) {
greeting = "Good day";
}
else {
greeting = "Good evening";
}
This guide was inspired by the Atom contribution guidelines.