refactor: eslint and prettier conflict will be resolved and formatted

This commit is contained in:
Enes Köksal
2026-04-23 17:05:43 +03:00
parent 385b61f29b
commit 3cfea40fbd
219 changed files with 16638 additions and 13663 deletions
+3 -1
View File
@@ -2,7 +2,9 @@ import 'dotenv/config';
import { ensureR2BucketExists, R2_BUCKET_NAME } from '@/lib/r2';
import { logError } from '@/lib/logger';
const shouldCreateBucket = /^(1|true|yes|on)$/i.test(process.env.SELF_HOSTED_AUTO_CREATE_BUCKET ?? '');
const shouldCreateBucket = /^(1|true|yes|on)$/i.test(
process.env.SELF_HOSTED_AUTO_CREATE_BUCKET ?? ''
);
async function main() {
if (!shouldCreateBucket) {