Skip to content

Commit

Permalink
Bump prettier and run eslint --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hjdivad committed Jan 24, 2020
1 parent d83e3d5 commit ea7d796
Show file tree
Hide file tree
Showing 40 changed files with 871 additions and 212 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
"mocha": "^6.2.2",
"npm-git-info": "^1.0.3",
"pre-commit": "^1.2.2",
"prettier": "~1.18.2",
"prettier": "~1.19.1",
"qunit": "^2.9.3",
"qunit-dom": "^0.9.1",
"rimraf": "^3.0.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,11 @@ module('integration/adapter/build-url-mixin - BuildURLMixin with RESTAdapter', f
id: '2',
relationships: {
comments: {
data: [{ id: '1', type: 'comment' }, { id: '2', type: 'comment' }, { id: '3', type: 'comment' }],
data: [
{ id: '1', type: 'comment' },
{ id: '2', type: 'comment' },
{ id: '3', type: 'comment' },
],
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@ module('integration/adapter/json-api-adapter - JSONAPIAdapter', function(hooks)
data: { type: 'users', id: '3' },
},
comments: {
data: [{ type: 'comments', id: '4' }, { type: 'comments', id: '5' }],
data: [
{ type: 'comments', id: '4' },
{ type: 'comments', id: '5' },
],
},
},
},
Expand Down Expand Up @@ -555,7 +558,10 @@ module('integration/adapter/json-api-adapter - JSONAPIAdapter', function(hooks)
},
relationships: {
comments: {
data: [{ type: 'comment', id: '2' }, { type: 'comment', id: '3' }],
data: [
{ type: 'comment', id: '2' },
{ type: 'comment', id: '3' },
],
},
},
},
Expand Down Expand Up @@ -613,7 +619,10 @@ module('integration/adapter/json-api-adapter - JSONAPIAdapter', function(hooks)
},
relationships: {
handles: {
data: [{ type: 'github-handle', id: '2' }, { type: 'twitter-handle', id: '3' }],
data: [
{ type: 'github-handle', id: '2' },
{ type: 'twitter-handle', id: '3' },
],
},
},
},
Expand Down Expand Up @@ -671,7 +680,10 @@ module('integration/adapter/json-api-adapter - JSONAPIAdapter', function(hooks)
},
relationships: {
comments: {
data: [{ type: 'comment', id: '2' }, { type: 'comment', id: '3' }],
data: [
{ type: 'comment', id: '2' },
{ type: 'comment', id: '3' },
],
},
},
},
Expand Down Expand Up @@ -726,7 +738,10 @@ module('integration/adapter/json-api-adapter - JSONAPIAdapter', function(hooks)
},
relationships: {
handles: {
data: [{ type: 'github-handle', id: '2' }, { type: 'twitter-handle', id: '3' }],
data: [
{ type: 'github-handle', id: '2' },
{ type: 'twitter-handle', id: '3' },
],
},
},
},
Expand Down Expand Up @@ -984,7 +999,10 @@ module('integration/adapter/json-api-adapter - JSONAPIAdapter', function(hooks)
},
relationships: {
handles: {
data: [{ type: 'github-handles', id: '2' }, { type: 'twitter-handles', id: '3' }],
data: [
{ type: 'github-handles', id: '2' },
{ type: 'twitter-handles', id: '3' },
],
},
},
},
Expand Down
Loading

0 comments on commit ea7d796

Please sign in to comment.