Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorKowalczyk committed Apr 24, 2022
1 parent 58fc43c commit 6dec1a6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion utilities/env/tests/api.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module.exports = async() => {
module.exports = async () => {
return;
};
2 changes: 1 addition & 1 deletion utilities/env/tests/bot.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const chalk = require("chalk");

module.exports = async() => {
module.exports = async () => {
if (!process.env.SUPPORT_SERVER_ID) console.log(chalk.blue.bold("[DEBUG]") + chalk.red.bold(` Missing process.env.SUPPORT_SERVER_ID!`));
};
2 changes: 1 addition & 1 deletion utilities/env/tests/dashboard.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const chalk = require("chalk");

module.exports = async() => {
module.exports = async () => {
if (!process.env.RECAPTCHA_SITE_KEY) console.log(chalk.blue.bold("[DEBUG]") + chalk.red.bold(` Missing process.env.RECAPTCHA_SITE_KEY!`));
if (!process.env.RECAPTCHA_SECRET_KEY) console.log(chalk.blue.bold("[DEBUG]") + chalk.red.bold(` Missing process.env.RECAPTCHA_SECRET_KEY!`));
if (!process.env.CONTACT_WEBHOOK) console.log(chalk.blue.bold("[DEBUG]") + chalk.red.bold(` Missing process.env.CONTACT_WEBHOOK!`));
Expand Down
2 changes: 1 addition & 1 deletion utilities/env/tests/shared.js

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

2 changes: 1 addition & 1 deletion utilities/requirments.js

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

0 comments on commit 6dec1a6

Please sign in to comment.