From 7aed2c9fa51b18727d9e0e072aec39bf941fb083 Mon Sep 17 00:00:00 2001 From: Justin McCammon Date: Thu, 3 Sep 2015 18:14:14 -0600 Subject: [PATCH] initial updates --- .gitignore | 1 + README.md | 16 ++++++---------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 3c3629e647..c2a0b06bd2 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ node_modules +*.idea diff --git a/README.md b/README.md index 43ce70db83..0dca058ba7 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,11 @@ -# Airbnb JavaScript Style Guide() { +# InstaBrand JavaScript Style Guide() { *A mostly reasonable approach to JavaScript* -[![Downloads](https://img.shields.io/npm/dm/eslint-config-airbnb.svg)](https://www.npmjs.com/package/eslint-config-airbnb) -[![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/airbnb/javascript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) +Adapted from the incredible [Airbnb Style Guide](https://github.com/airbnb/javascript) Other Style Guides - - [ES5](es5/) - - [React](react/) - - [CSS & Sass](https://github.com/airbnb/css) - - [Ruby](https://github.com/airbnb/ruby) + - [CSS & Sass](https://github.com/instabrand/css) ## Table of Contents @@ -1311,12 +1307,12 @@ Other Style Guides ## Whitespace - - [18.1](#18.1) Use soft tabs set to 2 spaces. + - [18.1](#18.1) Use soft tabs set to 4 spaces. ```javascript // bad function() { - ∙∙∙∙const name; + ∙∙const name; } // bad @@ -1326,7 +1322,7 @@ Other Style Guides // good function() { - ∙∙const name; + ∙∙∙∙const name; } ```