kmorcinek / conqueror-browser-spy

An app for better playing an online game http://conquerorgame.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Linter should not require exact length of each line

kmorcinek opened this issue · comments

I would like the possibility to have shorter lines (if this is better for readability).
Right now when a code

ConquerorSpy.productionChecker = new ProductionChecker(
  dependencyA,
  dependencyB,
  dependencyC
);

is refactored to have one dependency less:

ConquerorSpy.productionChecker = new ProductionChecker(
  dependencyB,
  dependencyC
);

linter is forcing to refactor to (what I want to avoid):

ConquerorSpy.productionChecker = new ProductionChecker(dependencyB, dependencyC);