Skip to content

Commit

Permalink
[Dev Deps] update jscs
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Aug 12, 2015
1 parent a6cd411 commit e3591a4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .jscs.json
Expand Up @@ -113,6 +113,10 @@
"maximum": 1
},

"requirePaddingNewLinesAfterUseStrict": true
"requirePaddingNewLinesAfterUseStrict": true,

"disallowArrowFunctions": true,

"validateOrderInObjectKeys": "asc-insensitive"
}

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -33,7 +33,7 @@
"tape": "^4.0.3",
"indexof": "^0.0.1",
"covert": "^1.1.0",
"jscs": "^2.0.0",
"jscs": "^2.1.0",
"editorconfig-tools": "^0.1.1",
"nsp": "^1.0.3",
"eslint": "^1.1.0",
Expand Down
2 changes: 1 addition & 1 deletion test.js
Expand Up @@ -20,7 +20,7 @@ test('not Numbers', function (t) {
});

test('@@toStringTag', { skip: !hasSymbols || !Symbol.toStringTag }, function (t) {
var fakeNumber = { valueOf: function () { return 42; }, toString: function () { return '7'; } };
var fakeNumber = { toString: function () { return '7'; }, valueOf: function () { return 42; } };
fakeNumber[Symbol.toStringTag] = 'Number';
t.notOk(isNumber(fakeNumber), 'fake Number with @@toStringTag "Number" is not Number');
t.end();
Expand Down

0 comments on commit e3591a4

Please sign in to comment.