From 659e1da79dc9cc0f14abe8483de7da1592433f4d Mon Sep 17 00:00:00 2001 From: karsten13 Date: Mon, 5 Jul 2021 00:40:01 +0200 Subject: [PATCH] run prettier --- tests/configs/empty_ipWhiteList.js | 2 +- tests/configs/env.js | 2 +- tests/configs/noIpWhiteList.js | 2 +- tests/configs/port_8090.js | 2 +- tests/configs/without_modules.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/configs/empty_ipWhiteList.js b/tests/configs/empty_ipWhiteList.js index 1c9353b5..6a0a9e95 100644 --- a/tests/configs/empty_ipWhiteList.js +++ b/tests/configs/empty_ipWhiteList.js @@ -3,7 +3,7 @@ * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. */ -let config = require('./default.js'); +let config = require("./default.js"); config.ipWhitelist = []; /*************** DO NOT EDIT THE LINE BELOW ***************/ diff --git a/tests/configs/env.js b/tests/configs/env.js index 9386d1c5..e5689d4c 100644 --- a/tests/configs/env.js +++ b/tests/configs/env.js @@ -4,7 +4,7 @@ * MIT Licensed. */ -let config = require('./default.js'); +let config = require("./default.js"); /*************** DO NOT EDIT THE LINE BELOW ***************/ if (typeof module !== "undefined") { diff --git a/tests/configs/noIpWhiteList.js b/tests/configs/noIpWhiteList.js index 6fe8e888..f9d3698e 100644 --- a/tests/configs/noIpWhiteList.js +++ b/tests/configs/noIpWhiteList.js @@ -3,7 +3,7 @@ * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. */ -let config = require('./default.js'); +let config = require("./default.js"); config.ipWhitelist = ["x.x.x.x"]; /*************** DO NOT EDIT THE LINE BELOW ***************/ diff --git a/tests/configs/port_8090.js b/tests/configs/port_8090.js index 9771e40b..400a54e1 100644 --- a/tests/configs/port_8090.js +++ b/tests/configs/port_8090.js @@ -3,7 +3,7 @@ * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. */ -let config = require('./default.js'); +let config = require("./default.js"); config.port = 8090; /*************** DO NOT EDIT THE LINE BELOW ***************/ diff --git a/tests/configs/without_modules.js b/tests/configs/without_modules.js index d985a4f5..78d56717 100644 --- a/tests/configs/without_modules.js +++ b/tests/configs/without_modules.js @@ -3,7 +3,7 @@ * By Rodrigo Ramírez Norambuena https://rodrigoramirez.com * MIT Licensed. */ -let config = require('./default.js'); +let config = require("./default.js"); delete config.modules; /*************** DO NOT EDIT THE LINE BELOW ***************/