Skip to content

Commit

Permalink
[Dev Deps] update jscs
Browse files Browse the repository at this point in the history
due to a semver-violating breaking change in a minor version (jscs-dev/node-jscs#2095)
  • Loading branch information
ljharb committed Jan 26, 2016
1 parent 9a1ea2d commit 094515a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 13 deletions.
6 changes: 5 additions & 1 deletion .jscs.json
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,10 @@

"requireObjectDestructuring": false,

"requireEarlyReturn": false
"requireEarlyReturn": false,

"requireCapitalizedConstructorsNew": {
"allExcept": ["Function", "String", "Object", "Symbol", "Number", "Date", "RegExp", "Error", "Boolean", "Array"]
}
}

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"eslint": "^1.10.3",
"@ljharb/eslint-config": "^1.6.1",
"jasmine-node": "^1.14.5",
"jscs": "^2.8.0",
"jscs": "^2.9.0",
"uglify-js": "^2.6.1",
"replace": "^0.3.0",
"semver": "^5.1.0",
Expand Down
33 changes: 22 additions & 11 deletions tests/spec/s-date.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,57 +29,68 @@ describe('Date', function () {
getUTCDay: 4,
getDay: 4,
dim: 31
}, {
},
{
getTime: -3509824651200292,
getUTCDay: 0,
getDay: 0,
dim: 29
}, {
},
{
getTime: -3509822145600292,
getUTCDay: 1,
getDay: 1,
dim: 31
}, {
},
{
getTime: -3509819467200292,
getUTCDay: 4,
getDay: 4,
dim: 30
}, {
},
{
getTime: -3509816875200292,
getUTCDay: 6,
getDay: 6,
dim: 31
}, {
},
{
getTime: -3509814196800292,
getUTCDay: 2,
getDay: 2,
dim: 30
}, {
},
{
getTime: -3509811604800292,
getUTCDay: 4,
getDay: 4,
dim: 31
}, {
},
{
getTime: -3509808926400292,
getUTCDay: 0,
getDay: 0,
dim: 31
}, {
},
{
getTime: -3509806248000292,
getUTCDay: 3,
getDay: 3,
dim: 30
}, {
},
{
getTime: -3509803656000292,
getUTCDay: 5,
getDay: 5,
dim: 31
}, {
},
{
getTime: -3509800977600292,
getUTCDay: 1,
getDay: 1,
dim: 30
}, {
},
{
getTime: -3509798385600292,
getUTCDay: 3,
getDay: 3,
Expand Down

0 comments on commit 094515a

Please sign in to comment.