Skip to content

Commit 648878c

Browse files
committed
Removed redundant exit.md file becasue of exit-codes.md & added suggested prettier rules
1 parent daaade4 commit 648878c

File tree

7 files changed

+38
-27
lines changed

7 files changed

+38
-27
lines changed

.markdownlint.json

Lines changed: 33 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,35 @@
11
{
2-
"MD007": {
3-
"indent": 4
2+
"no-duplicate-heading": false,
3+
"no-inline-html": {
4+
"allowed_elements": [
5+
"figure",
6+
"figcaption",
7+
"img",
8+
"p"
9+
]
410
},
5-
"MD013": false,
6-
"MD030": {
7-
"ul_single": 3,
8-
"ol_single": 1,
9-
"ul_multi": 3,
10-
"ol_multi": 1
11-
},
12-
"MD033": false,
13-
"MD034": false
14-
}
11+
"no-bare-urls": false,
12+
"comment": "The following entries disable rules that may conflict with Prettier see https://github.com/DavidAnson/markdownlint/blob/v0.34.0/style/prettier.json",
13+
"blanks-around-fences": false,
14+
"blanks-around-headings": false,
15+
"blanks-around-lists": false,
16+
"code-fence-style": false,
17+
"emphasis-style": false,
18+
"heading-start-left": false,
19+
"hr-style": false,
20+
"line-length": false,
21+
"list-indent": false,
22+
"list-marker-space": false,
23+
"no-blanks-blockquote": false,
24+
"no-hard-tabs": false,
25+
"no-missing-space-atx": false,
26+
"no-missing-space-closed-atx": false,
27+
"no-multiple-blanks": false,
28+
"no-multiple-space-atx": false,
29+
"no-multiple-space-blockquote": false,
30+
"no-multiple-space-closed-atx": false,
31+
"no-trailing-spaces": false,
32+
"ol-prefix": false,
33+
"strong-style": false,
34+
"ul-indent": false
35+
}

SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
- [Game Server Querying](technical/game-server-querying.md)
3434
- [Messages & Logs](technical/messages-and-logs.md)
3535
- [Checks](technical/checks.md)
36-
- [Exit](technical/exit.md)
36+
- [Exit & Exit Codes](technical/exit-codes.md)
3737
- [Install](technical/install.md)
3838
- [Debuggins](technical/debuggins.md)
3939

code-standards/shellcheck-linter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Shellcheck Linter
22

3-
\[WIP\]
3+
[WIP]

technical/exit.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

technical/game-server-querying.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Game Server Querying
22

3-
\[WIP\]
3+
[WIP]

technical/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ In bash to call another bash script, the `source` command is used. However, in L
8787

8888
To call a module simply add the name of the module file e.g `info_config.sh` and the module will be called. If a new module is being added it must be added to the list of modules in `core_functions.sh` like so.
8989

90-
```
90+
```bash
9191
info_config.sh(){
9292
functionfile="${FUNCNAME}"
9393
fn_fetch_function

workflow/agile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Agile
22

3-
\[WIP\]
3+
[WIP]

0 commit comments

Comments
 (0)