Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.eslintrc.json: adjust eslint rules to enforce readable chain syntax
previously, the eslint hook would enforce that the dot of multi- line chaining was attached to the object instead of the property thus formatting the first example into the second which I find less readable. ```javascript const a = _({}) .mapKeys(...) .filter(...) .value(); ``` ```javascript const a = _({}). mapKeys(...). filter(...). value(); ```
- Loading branch information