aboutsummaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-06-21 16:11:14 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-06-21 16:11:14 -0400
commit982d71f81f00495b9aed518da1b7bdfb4e50010f (patch)
tree1bc072483748493b195dd561d7f0d27a10fe4dff /src/config
parent4cfd0de634d2883ba84919abc4b9e7ebc025ec27 (diff)
downloadtanzanite-982d71f81f00495b9aed518da1b7bdfb4e50010f.tar.gz
tanzanite-982d71f81f00495b9aed518da1b7bdfb4e50010f.tar.bz2
tanzanite-982d71f81f00495b9aed518da1b7bdfb4e50010f.zip
fix(*): eslint
Diffstat (limited to 'src/config')
-rw-r--r--src/config/example-options.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/config/example-options.ts b/src/config/example-options.ts
index ce8f782..fadd640 100644
--- a/src/config/example-options.ts
+++ b/src/config/example-options.ts
@@ -32,7 +32,8 @@ export const db = {
};
// Logging
-export const logging: { info: boolean; verbose: boolean } = {
- info: false,
- verbose: true
+export const logging: { db: boolean; verbose: boolean; info: boolean } = {
+ db: false,
+ verbose: true,
+ info: true
};