Skip to content

Commit

Permalink
run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
thelostone-mc committed Nov 18, 2024
1 parent 44f2574 commit 91880fd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"lint-staged": {
"src/**/!(index).ts": [
"eslint --fix --max-warnings=0",
"prettier --write"
"prettier \"src/**/*.{ts,json,md}\" --write"
]
}
}
22 changes: 11 additions & 11 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ const logger = createLogger();

app.get('/', (req, res) => {
res.json({
message: "Welcome to Checker! 🧐",
apis: "/api-docs",
graphiql: "/graphiql",
status: "Ready to review those Gitcoin applications!",
message: 'Welcome to Checker! 🧐',
apis: '/api-docs',
graphiql: '/graphiql',
status: 'Ready to review those Gitcoin applications!',
data: {
current_task: "Evaluating Gitcoin applications πŸš€",
next_step: "Dive into the latest submissions πŸ“",
reviewers: ["Application Guru", "Funding Finder", "Grant Guardian"]
current_task: 'Evaluating Gitcoin applications πŸš€',
next_step: 'Dive into the latest submissions πŸ“',
reviewers: ['Application Guru', 'Funding Finder', 'Grant Guardian'],
},
tips: [
"Read between the lines of every application! πŸ‘€",
"Look for clear goals and impact in their proposals! 🎯",
"Make sure the team is passionate and capable! πŸ’ͺ"
'Read between the lines of every application! πŸ‘€',
'Look for clear goals and impact in their proposals! 🎯',
'Make sure the team is passionate and capable! πŸ’ͺ',
],
joke: "Why did the Gitcoin applicant bring a spreadsheet to the interview? Because they wanted to 'excel' at grant proposals! πŸ“Š"
joke: "Why did the Gitcoin applicant bring a spreadsheet to the interview? Because they wanted to 'excel' at grant proposals! πŸ“Š",
});
});

Expand Down

0 comments on commit 91880fd

Please sign in to comment.