diff --git a/README.md b/README.md index 12c8e66..ef757af 100644 --- a/README.md +++ b/README.md @@ -79,4 +79,22 @@ _Bad 👎🏻_ ```javascript // Hide modal window on error. toggleModal(false); -``` \ No newline at end of file +``` + +### 💩 Try to mix formatting style as much as possible + +Celebrate the difference. + +_Good 👍🏻_ + +```javascript +let i = ['tomato', 'onion', 'mushrooms']; +let d = [ "ketchup", "mayonnaise" ]; +``` + +_Bad 👎🏻_ + +```javascript +let ingredients = ['tomato', 'onion', 'mushrooms']; +let dressings = ['ketchup', 'mayonnaise']; +```