Shumiland/eslint.config.mjs
Vadym Samoilenko 7c5b5979bd
Some checks are pending
CI / Type Check (push) Waiting to run
CI / Lint (push) Waiting to run
CI / Unit Tests (push) Waiting to run
Deploy / Build & Push Image (push) Waiting to run
Deploy / Deploy to VPS (push) Blocked by required conditions
feat(cms): wire DyvoLis gallery to CMS, fix eslint config
Add galleryImages array field to DyvoLisPage global so the photo gallery
is editable from Payload admin. Component falls back to 24 static images
when no CMS images are uploaded. Fix eslint flat-config error caused by
referencing @typescript-eslint plugin without an explicit import.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-13 18:01:45 +01:00

13 lines
253 B
JavaScript

import nextConfig from 'eslint-config-next'
/** @type {import('eslint').Linter.Config[]} */
const eslintConfig = [
...nextConfig,
{
rules: {
'no-console': ['warn', { allow: ['warn', 'error'] }],
},
},
]
export default eslintConfig