Kick off (#1)

* Kick off
* Update LICENSE copyright
This commit is contained in:
2026-04-11 13:22:36 +02:00
committed by GitHub
parent 1f1e74c9f8
commit 3882a1941a
76 changed files with 17154 additions and 1 deletions

28
eslint.config.js Normal file
View File

@@ -0,0 +1,28 @@
import oxlint from 'eslint-plugin-oxlint';
import tsParser from '@typescript-eslint/parser';
export default [
{
ignores: ['status-page/**', 'node_modules/**', 'dist/**'],
},
{
files: ['src/**/*.ts'],
languageOptions: {
parser: tsParser,
},
},
{
files: ['src/**/*.test.ts', 'src/**/test-*.ts', 'src/**/*.spec.ts'],
rules: {
'cloudflare-worker/no-hardcoded-secrets': 'off',
'cloudflare-worker/env-var-validation': 'off',
},
},
{
files: ['src/utils/interpolate.ts'],
rules: {
'cloudflare-worker/env-var-validation': 'off',
},
},
...oxlint.configs['flat/all'],
];