From f221811e5d87178fccb34998d0a25f1ceee9fbd5 Mon Sep 17 00:00:00 2001 From: LogMANOriginal Date: Mon, 5 Nov 2018 12:58:43 +0100 Subject: [PATCH] Updated Coding style policy (markdown) --- Coding-style-policy.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/Coding-style-policy.md b/Coding-style-policy.md index 01bad09..15aba2f 100644 --- a/Coding-style-policy.md +++ b/Coding-style-policy.md @@ -15,6 +15,18 @@ RSS-Bridge uses tabs for indentation on all PHP files in the repository (except _Reference_: [`Generic.WhiteSpace.DisallowSpaceIndent`](https://github.com/squizlabs/PHP_CodeSniffer/blob/master/src/Standards/Generic/Sniffs/WhiteSpace/DisallowSpaceIndentSniff.php) +# Add spaces around the concatenation operator + +The concatenation operator should have one space on both sides in order to improve readability. + + + + + + + + + # Maximum line length One line of code should have no more than **80 characters** (soft limit) and must never exceed **120 characters** (hard limit).