Skip to content

Commit

Permalink
chore(deps): bump eslint-plugin-prettier from 4.2.1 to 5.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
baumandm committed Jan 4, 2024
1 parent a8bfe86 commit 4ee0282
Show file tree
Hide file tree
Showing 12 changed files with 141 additions and 47 deletions.
121 changes: 101 additions & 20 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-unicorn": "43.0.2",
"fs-extra": "11.2.0",
"globby": "11.0.4",
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-prettier": "5.1.2",
"find": "0.3.0",
"fs-extra": "11.2.0",
"jest": "27.5.1",
Expand Down
5 changes: 4 additions & 1 deletion packages/backend/src/resolvers/activity-details.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ export class InsightActivityDetailsResolver {
@Service()
@Resolver(() => InsightCollaboratorActivityDetails)
export class InsightCollaboratorActivityDetailsResolver {
constructor(private readonly insightService: InsightService, private readonly userService: UserService) {}
constructor(
private readonly insightService: InsightService,
private readonly userService: UserService
) {}

@FieldResolver(() => Insight, { nullable: true })
async insight(@Root() activityDetails: IndexedCollaboratorActivityDetails): Promise<Insight | undefined> {
Expand Down
5 changes: 4 additions & 1 deletion packages/backend/src/resolvers/news.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ const logger = getLogger('news.resolver');
@Service()
@Resolver(() => News)
export class NewsResolver {
constructor(private readonly newsService: NewsService, private readonly userService: UserService) {}
constructor(
private readonly newsService: NewsService,
private readonly userService: UserService
) {}

@Authorized<Permission>({ user: true })
@Query(() => NewsConnection)
Expand Down
5 changes: 4 additions & 1 deletion packages/backend/src/resolvers/template.resolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ const logger = getLogger('template.resolver');
@Service()
@Resolver()
export class TemplateResolver {
constructor(private readonly insightService: InsightService, private readonly templateService: TemplateService) {}
constructor(
private readonly insightService: InsightService,
private readonly templateService: TemplateService
) {}

@Authorized<Permission>({ user: true })
@Query(() => [Insight])
Expand Down
5 changes: 4 additions & 1 deletion packages/backend/src/services/change-history.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ const logger = getLogger('change-history.service');

@Service()
export class ChangeHistoryService {
constructor(private readonly userService: UserService, private readonly activityService: ActivityService) {
constructor(
private readonly userService: UserService,
private readonly activityService: ActivityService
) {
logger.trace('Constructing New Change History Service');
}

Expand Down
2 changes: 1 addition & 1 deletion packages/convertbot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-prettier": "5.1.2",
"jest": "27.5.1",
"nodemon": "3.0.2",
"npm-run-all": "4.1.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-react-hooks": "4.6.0",
"jest": "27.5.1",
"prettier": "3.1.1",
Expand Down
5 changes: 4 additions & 1 deletion packages/frontend/src/shared/remark/generic-attrs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ export class KeyAttribute implements Attribute {
}

export class KeyValueAttribute implements Attribute {
constructor(public key: string, public value: string) {}
constructor(
public key: string,
public value: string
) {}
}

const lang = Parsimmon.createLanguage({
Expand Down
32 changes: 15 additions & 17 deletions packages/frontend/src/store/user.slice.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,24 +54,22 @@ export const login = createAsyncThunk<User, string, { rejectValue: string }>(
enableAuthorization(oidcAccessToken);

const response = await urqlClient
.mutation(
gql`
mutation login {
login {
id
userName
email
displayName
locale
defaultTemplateId
avatarUrl
team
isAdmin
featureFlags
}
.mutation(gql`
mutation login {
login {
id
userName
email
displayName
locale
defaultTemplateId
avatarUrl
team
isAdmin
featureFlags
}
`
)
}
`)
.toPromise();
return response.error ? thunkApi.rejectWithValue(response.error.message) : response.data.login;
} catch (error: any) {
Expand Down
2 changes: 1 addition & 1 deletion packages/slackbot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-prettier": "5.1.2",
"jest": "27.5.1",
"nodemon": "3.0.2",
"npm-run-all": "4.1.5",
Expand Down

0 comments on commit 4ee0282

Please sign in to comment.