chore: update eslint config

we still have tons of lints to fix though
This commit is contained in:
Tomáš Mládek 2025-09-27 13:50:36 +02:00
parent d19d369825
commit 9d6fb10683

View file

@ -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,