Skip to content
This repository has been archived by the owner on Mar 26, 2019. It is now read-only.

wemake-services/eslint-config-jsdoc-essential

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

eslint-config-jsdoc-essential

wemake.services Build Status

Shareable configuration for eslint-plugin-jsdoc.

The main idea of this configuration is to be:

  1. Strict about syntax
  2. Permissive about types (because we use flow for type annotations)
  3. Opened for further extensions

Installation

npm install --save-dev eslint-config-jsdoc-essential

Then, modify your eslint configuration:

{
  "extends": [
    "jsdoc-essential"
  ]
}

Done! Later you can modify your configuration to include any extra rules you need.

Code example

This code is considered valid (and beautiful):

/**
 * Imaginary function to take same slices from imaginary pizza.
 * This function is created, because we love pizza.
 *
 * @param pizza - {Array} List of slices.
 * @param numberOfSlices - Number of slices to take away.
 * @returns {Array} What is left of our pizza.
 */
function takeSlices (pizza, numberOfSlices) {
  return pizza.splice(0, numberOfSlices)
}

License

MIT.