From ffd711a4ea581c747363f5ceb90b14fe172d0c32 Mon Sep 17 00:00:00 2001 From: Dylan Araps Date: Fri, 4 May 2018 17:02:31 +1000 Subject: [PATCH] docs: update --- CONTRIBUTING.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8952749d..08e5a934 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,18 @@ # How to Contribute +## Table of Contents + + +* [ShellCheck](#shellcheck) +* [Coding Conventions](#coding-conventions) +* [No no's](#no-nos) +* [If Statements](#if-statements) +* [Case Statements](#case-statements) + + + + ## ShellCheck For your contribution to be accepted, your changes need to pass @@ -52,7 +64,7 @@ fi # Good [[ "$var" ]] && echo "$var" -# Also good (Use this for longer lines. +# Also good (Use this for longer lines). [[ "$var" ]] && \ echo "$var" ```