From 9d6fb1068347c58f9c67bffeea94cb40106eaed6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Sat, 27 Sep 2025 13:50:36 +0200 Subject: [PATCH] chore: update eslint config we still have tons of lints to fix though --- .eslintrc.cjs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 0b75758..130f0bd 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -1,5 +1,6 @@ /** @type { import("eslint").Linter.Config } */ module.exports = { + ignorePatterns: ['av-sync/**', '**/*.js'], root: true, extends: [ 'eslint:recommended', @@ -12,7 +13,8 @@ module.exports = { parserOptions: { sourceType: 'module', ecmaVersion: 2020, - extraFileExtensions: ['.svelte'] + extraFileExtensions: ['.svelte'], + project: './tsconfig.json' }, env: { browser: true,