feat: redesign meal ordering system

This commit is contained in:
2025-12-02 12:57:42 +01:00
parent 0aada37286
commit 0cf6b405f1
24 changed files with 4823 additions and 639 deletions

View File

@@ -1,4 +1,12 @@
module.exports = {
root: true,
extends: ['@payloadcms'],
extends: ['next/core-web-vitals', 'next/typescript'],
rules: {
'@typescript-eslint/no-explicit-any': 'warn',
'@typescript-eslint/no-unused-vars': ['warn', {
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
}],
},
}