1.2.0 • Published 7 years ago

eslint-config-strossle v1.2.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Strossle JavaScript Style Guide

The his JavaScript style guide is based on the eslint-config-airbnb-base style guide.

Table of Contents

  1. Arrow Functions
  2. Curly Braces
  3. Indentation

Arrow functions

We have turned off arrow function rules

Curly Braces

  • 2.1 Braces: Both signle and multi-statment blocks should be surrounded by braces.
if (i < 10) i++; // bad

if (i < 10) { // good
    i++;
}

Indentation

  • 3.1 Width: Indentation levels should be 4 spaces. We feel that 4 spaces makes it easier to distinguish between indentation levels.