Skip to content

Commit

Permalink
chore: lint after prettier bump
Browse files Browse the repository at this point in the history
  • Loading branch information
thollander committed Jan 14, 2023
1 parent dffae49 commit 632cf9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { GetResponseDataTypeFromEndpointMethod } from '@octokit/types';

// See https://docs.github.com/en/rest/reactions#reaction-types
const REACTIONS = ['+1', '-1', 'laugh', 'confused', 'heart', 'hooray', 'rocket', 'eyes'] as const;
type Reaction = typeof REACTIONS[number];
type Reaction = (typeof REACTIONS)[number];

async function run() {
try {
Expand Down

0 comments on commit 632cf9c

Please sign in to comment.