3.6.8 • Published 7 years ago

eslint-config-crewmeister v3.6.8

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

eslint-config-crewmeister

The eslint config we use at crewmeister.

In order to asure we all use the same coding style across crewmeister, this repo defines the rules executed by eslint.

Usage

In any repo (that should be an npm package) install it like this

npm install eslint-config-crewmeister --save-dev

In order to use it, you can call eslint-crewmeister from within the project. The above install adds the executable to your node_modules/bin folder. You should add it to the package.json inside the scripts directory, e.g. like this

"scripts": {
  // ...
  "lint": "eslint-crewmeister src"
  // ...
}

Best practice is also to use the lint before the test run, so that no lint errors slips through. E.g. like this

"scripts": {
  // ...
  "test": "npm run lint && ..."
  // ...
}

Development

In development mode, where you also want to work on this repo here do the following:

> cd crewmeister/repos/eslint-config-crewmeister
npm link # creates a local sym link that refers to this repo here

> cd crewmeister/repos/<what-you-are-working-on>
> npm link eslint-config-crewmeister # use the sym link created above

Release

1) update the CHANGELOG.md 1) use npm version major to go up to the next version, always going up to next major for now

The Coding Style

By default our coding style is derived from the airbnb style. All modifications/addons are added here.

Table of Contents

  1. Globals

Globals

  • 1.1 Globals: For the tests we provide it and describe as globals

Formatting

  • 2.1 ??? do this that

    // short one line arrow functions
    // DON'T
    const func = () =>
      x + y;
    
    // DO
    const func = () => x + y;
    
    // long one line arrow functions, function body shall be on the next line, including ";"
    // DO
    const func = () =>
      oneLongVariable + anotherLongVariable - orSomethingThatMakesThisQuiteLong;
    
    // nested calls
    // DO
    const func = () =>
      house(thatHas(threeNeighbors())); // if line doesnt get tooo long
      
    const func = () =>
      house(
        thatHas(
          threeNeighbors())); // can also be written like this, for clarity
      
    // `promiseThat` and alikes are an exception  
    it('test description', () => promiseThat(
      something(), fulfills()));  
      
    it('test description', () => promiseThat(
      something(
        needsAParameter(
          whichNeedsAnotherOne())));  
          
    // logical blocks are separated by new-lines, functions/tests can be separated as above, 
    
    const SECOND = 1000;
    const MINUTE = 60 * SECOND;
    const HOUR = 60 * MINUTE;
    const DAY = 24 * HOUR;
    
    const house = new HouseMusic();
    // constants/variables that belong together as a logical block may be written without new-lines in between
    
    import { promiseThat } from 'hamjest';
    import {
      promiseThat,
      assertThat,
    } from 'hamjest';

    In doubt, in general inside one file, the coding style shall be kept! Which means, what is a logical block, where new-lines are added, this is determined by the existing file, which means, don't come in and change the complete file first.

3.6.8

7 years ago

3.6.6

7 years ago

3.6.5

7 years ago

3.6.4

7 years ago

3.6.3

7 years ago

3.6.1

7 years ago

3.6.0

7 years ago

3.5.0

7 years ago

3.4.0

7 years ago

3.3.1

7 years ago

3.3.0

7 years ago

3.2.0

7 years ago

3.1.0

7 years ago

2.5.2

8 years ago

2.5.1

8 years ago

2.5.0

8 years ago

2.4.0

8 years ago

2.3.0

8 years ago

2.2.1

8 years ago

2.2.0

8 years ago

2.1.0

8 years ago

2.0.0

8 years ago

1.0.0

8 years ago