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*
-[](https://www.npmjs.com/package/eslint-config-airbnb)
-[](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;
}
```