Files
klz-cables.com/.pnpm-store/v10/files/8e/9791a6e193a96712b687872c279a60f88e6b9f5921f65b80a2c05460187d1a2c1402fcd9348acf7ef38ede342dbdf8fe90998cb63723a5bdc72257c19b8fe1
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

32 lines
686 B
Plaintext

import js from '@eslint/js';
export default [
js.configs.recommended,
{
languageOptions: {
ecmaVersion: 2020,
sourceType: 'module',
globals: {
// Browser globals
window: 'readonly',
document: 'readonly',
navigator: 'readonly',
console: 'readonly',
setTimeout: 'readonly',
clearTimeout: 'readonly',
setInterval: 'readonly',
clearInterval: 'readonly',
fetch: 'readonly',
Promise: 'readonly',
// ES2020 globals
globalThis: 'readonly',
},
},
rules: {},
},
{
ignores: ['**/spec.js', '**/*.spec.js', 'node_modules/**', 'lib/**'],
},
];