chore: object shorthand linting rule (#12152)

chore: object shorthand
This commit is contained in:
Jason Rasmussen
2024-08-30 14:38:53 -04:00
committed by GitHub
parent 40854f358c
commit 5e6ac87eaf
23 changed files with 30 additions and 28 deletions
+3 -3
View File
@@ -46,7 +46,7 @@ const fixtures = {
};
const oauthUserWithDefaultQuota = {
email: email,
email,
name: ' ',
oauthId: sub,
quotaSizeInBytes: 1_073_741_824,
@@ -561,7 +561,7 @@ describe('AuthService', () => {
);
expect(userMock.create).toHaveBeenCalledWith({
email: email,
email,
name: ' ',
oauthId: sub,
quotaSizeInBytes: null,
@@ -581,7 +581,7 @@ describe('AuthService', () => {
);
expect(userMock.create).toHaveBeenCalledWith({
email: email,
email,
name: ' ',
oauthId: sub,
quotaSizeInBytes: 5_368_709_120,