-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Streamline developer documentation #6107
Conversation
@@ -1,24 +1,22 @@ | |||
# General Formatting | |||
- Indentation should be 4 spaces instead of tabs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is covered differently by different files. In general this will be caught by static analysis now.
# SQL | ||
* Prepared statements MUST be used for any statements which involve user input. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is more of a PHP thing since that's how the commands are written.
- Javascript should never be mixed with HTML or PHP code. | ||
- Javascript should go into `modules/js/` | ||
- Any newly written JavaScript should pass ESLint with default options. | ||
- Compiled JavaScript should not be tracked by Git so make use of .gitignore |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These points are covered in the new module guide #6048 and is more appropriate there.
add syntax highlighting Co-Authored-By: PapillonMcGill <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pending Travis
Modifies some of our developer documentation to be up-to-date and less repetitive. Moves some sections around so that they are in a more appropriate place. Resolves aces#4390
Modifies some of our developer documentation to be up-to-date and less repetitive. Moves some sections around so that they are in a more appropriate place. Resolves aces#4390
Modifies some of our developer documentation to be up-to-date and less repetitive. Moves some sections around so that they are in a more appropriate place. Resolves aces#4390
Modifies some of our developer documentation to be up-to-date and less repetitive. Moves some sections around so that they are in a more appropriate place. Resolves aces#4390
Brief summary of changes
Modifies some of our developer documentation to be up-to-date and less repetitive. Moves some sections around so that they are in a more appropriate place.
Resolves #4390 (With some parts of that issue being handled by #6105)