Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions env-example-document
Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,7 @@ GOOGLE_CLIENT_SECRET=
APPLE_APP_AUDIENCE=[]

WORKER_HOST=redis://redis:6379/1

# Logger Configuration
LOG_LEVEL=info
LOG_PRETTY=true
4 changes: 4 additions & 0 deletions env-example-relational
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,7 @@ GOOGLE_CLIENT_SECRET=
APPLE_APP_AUDIENCE=[]

WORKER_HOST=redis://redis:6379/1

# Logger Configuration
LOG_LEVEL=info
LOG_PRETTY=true
13 changes: 10 additions & 3 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import tsEslintPlugin from '@typescript-eslint/eslint-plugin';
import globals from 'globals';
import tsParser from '@typescript-eslint/parser';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import js from '@eslint/js';

import { FlatCompat } from '@eslint/eslintrc';
import js from '@eslint/js';
import tsEslintPlugin from '@typescript-eslint/eslint-plugin';
import tsParser from '@typescript-eslint/parser';

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
Expand Down Expand Up @@ -60,6 +61,12 @@ export default [
message: '"it" should start with "should"',
},
],
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
},
},
];
Loading