eslint-plugin-one-variable-per-var

Require one variable per var

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
eslint-plugin-one-variable-per-var
210.0.39 years ago9 years agoMinified + gzip package size for eslint-plugin-one-variable-per-var in KB

Readme

Build Status
eslint-plugin-one-variable-per-var
ESLint rule for enforcing one variable per var statement

Why Use It

You like consistency
Here are 3 consistent lines
var a = 1;
var b = 2;
var c = 3;
Here are 3 inconsistent lines
var a = 1,
    b = 2,
    c = 3;
The first line has a var and ends with a comma, the second line has no var and ends with a comma, the 3rd line has no var and ends with a semicolon. That's not consistent.
Further, copying, cutting, pasting in other variables requires more editing in the inconsistent case and requires having to deal with lines other than the ones you're editing. If I add d as a var I should not have to care about the line c is on. In the consistent case each line has no dependecnes. In inconsistent case each line is dependent on 1 or more other lines.

Further Reading

  • http://eslint.org/