i had a eureka moment and hopefully it works
Some checks failed
Code quality checks / build (23) (push) Failing after 23s
Push code / build (push) Successful in 1m12s

This commit is contained in:
Lara 2024-11-02 16:39:00 +02:00
parent 2b25a0106b
commit 5cebf53e04
Signed by: laratheprotogen
GPG key ID: 5C0296EB3165F98B
7 changed files with 473 additions and 205 deletions

View file

@ -0,0 +1,33 @@
import prettier from 'eslint-config-prettier';
import js from '@eslint/js';
import svelte from 'eslint-plugin-svelte';
import globals from 'globals';
import ts from 'typescript-eslint';
export default ts.config(
js.configs.recommended,
...ts.configs.recommended,
...svelte.configs['flat/recommended'],
prettier,
...svelte.configs['flat/prettier'],
{
languageOptions: {
globals: {
...globals.browser,
...globals.node
}
}
},
{
files: ['**/*.svelte'],
languageOptions: {
parserOptions: {
parser: ts.parser
}
}
},
{
ignores: ['build/', '.svelte-kit/', 'dist/']
}
);