You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
903 B
34 lines
903 B
6 years ago
|
# Formatting Guidelines
|
||
|
|
||
|
All files should adhere to these formatting guidelines.
|
||
|
|
||
|
## Script
|
||
|
|
||
|
- All `build.sh` should be set to `644` permission.
|
||
|
|
||
|
- All scripts should use tabs rather than spaces.
|
||
|
|
||
|
- All parantheses of shell functions should not be preceded with a space.
|
||
|
|
||
|
- Dollar parentheses `$()` rather than backticks ``` `` ``` should be employed in command substitution.
|
||
|
|
||
|
## Markdown
|
||
|
|
||
|
- All `filenames` should be under code formatting, unless they are links.
|
||
|
|
||
|
- All titles should be indented with hashes rather than equal signs.
|
||
|
|
||
|
- All unnumbered lists should be indented with hyphens.
|
||
|
|
||
|
- All Markdown should be edited on alternate line.
|
||
|
|
||
|
- All Markdown should use tabs rather than spaces.
|
||
|
|
||
|
- All `.md` should be set to `644` permission.
|
||
|
|
||
|
- All characters should be escaped.
|
||
|
|
||
|
- All names of `.md` should be capitalised.
|
||
|
|
||
|
- All code blocks should be enclosed in backticks, with language specified.
|