feat: set up announcement and cors logic for server

This commit is contained in:
2025-07-05 15:43:23 -07:00
parent a12f2b0315
commit 42bad8c6c8
14 changed files with 548 additions and 102 deletions

View File

@ -1,5 +1,18 @@
import NaomisConfig from '@nhcarrigan/eslint-config';
export default [
...NaomisConfig
...NaomisConfig,
{
files: ["src/routes/*.ts"],
rules: {
"max-lines-per-function": "off",
}
},
{
files: ["src/routes/*.ts"],
rules: {
// We turn this off so we can use the async plugin syntax without needing to await.
"@typescript-eslint/require-await": "off",
}
}
]