eslint-plugin-standard
ESlint Plugin for the Standard Linter
Last updated 6 years ago by feross .
MIT · Repository · Bugs · Original npm
$ cnpm install eslint-plugin-standard 
SYNC missed versions from official npm registry.

eslint-plugin-standard travis npm downloads javascript style guide

ESlint Rules for the Standard Linter

Usage

npm install --save-dev eslint-plugin-standard

Configuration

{
  rules: {
    'standard/object-curly-even-spacing': [2, "either"],
    'standard/array-bracket-even-spacing': [2, "either"],
    'standard/computed-property-even-spacing': [2, "even"],
    'standard/no-callback-literal': [2, ["cb", "callback"]]
  }
}

Rules Explanations

There are several rules that were created specifically for the standard linter.

  • object-curly-even-spacing - Like object-curly-spacing from ESLint except it has an either option which lets you have 1 or 0 spaces padding.
  • array-bracket-even-spacing - Like array-bracket-even-spacing from ESLint except it has an either option which lets you have 1 or 0 spacing padding.
  • computed-property-even-spacing - Like computed-property-spacing around ESLint except is has an even option which lets you have 1 or 0 spacing padding.
  • no-callback-literal - Ensures that we strictly follow the callback pattern with undefined, null or an error object in the first position of a callback.

Current Tags

  • 5.0.0                                ...           latest (5 years ago)

6 Versions

  • 4.1.0                                ...           5 years ago
  • 5.0.0 [deprecated]           ...           5 years ago
  • 4.0.0                                ...           7 years ago
  • 3.0.1                                ...           8 years ago
  • 3.1.0                                ...           7 years ago
  • 4.0.1                                ...           6 years ago
Maintainers (2)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (3)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org