Skip to content

Commit

Permalink
[Tests] fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Dec 28, 2018
1 parent 298d528 commit 54f3476
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"rules": {
"complexity": [1, 10],
"eqeqeq": [2, "allow-null"],
"func-names": 0,
"id-length": [2, { "min": 1, "max": 23 }],
"max-depth": [2, 5],
"max-lines-per-function": [2, { "max": 250 }],
Expand Down
2 changes: 1 addition & 1 deletion getCollectionsForEach.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

module.exports = function () {
module.exports = function getCollectionsforEach() {
var mapForEach = (function () {
if (typeof Map !== 'function') { return null; }
try {
Expand Down

0 comments on commit 54f3476

Please sign in to comment.