ESLint: fix dangling commas

This commit is contained in:
Yury Bondarenko
2023-06-27 16:23:06 +02:00
parent 725dbc3743
commit 917c36dbe7
1789 changed files with 12452 additions and 12452 deletions

View File

@@ -13,7 +13,7 @@ export const EPersonMock: EPerson = Object.assign(new EPerson(), {
self: {
href: 'https://rest.api/dspace-spring-rest/api/eperson/epersons/testid',
},
groups: { href: 'https://rest.api/dspace-spring-rest/api/eperson/epersons/testid/groups' }
groups: { href: 'https://rest.api/dspace-spring-rest/api/eperson/epersons/testid/groups' },
},
id: 'testid',
uuid: 'testid',
@@ -22,28 +22,28 @@ export const EPersonMock: EPerson = Object.assign(new EPerson(), {
'dc.title': [
{
language: null,
value: 'User Test'
}
value: 'User Test',
},
],
'eperson.firstname': [
{
language: null,
value: 'User'
}
value: 'User',
},
],
'eperson.lastname': [
{
language: null,
value: 'Test'
value: 'Test',
},
],
'eperson.language': [
{
language: null,
value: 'en'
value: 'en',
},
]
}
],
},
});
export const EPersonMock2: EPerson = Object.assign(new EPerson(), {
@@ -59,7 +59,7 @@ export const EPersonMock2: EPerson = Object.assign(new EPerson(), {
self: {
href: 'https://rest.api/dspace-spring-rest/api/eperson/epersons/testid2',
},
groups: { href: 'https://rest.api/dspace-spring-rest/api/eperson/epersons/testid2/groups' }
groups: { href: 'https://rest.api/dspace-spring-rest/api/eperson/epersons/testid2/groups' },
},
id: 'testid2',
uuid: 'testid2',
@@ -68,26 +68,26 @@ export const EPersonMock2: EPerson = Object.assign(new EPerson(), {
'dc.title': [
{
language: null,
value: 'User Test 2'
}
value: 'User Test 2',
},
],
'eperson.firstname': [
{
language: null,
value: 'User2'
}
value: 'User2',
},
],
'eperson.lastname': [
{
language: null,
value: 'MeepMeep'
value: 'MeepMeep',
},
],
'eperson.language': [
{
language: null,
value: 'fr'
value: 'fr',
},
]
}
],
},
});