50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
import astro from 'eslint-plugin-astro';
|
|
import svelte from 'eslint-plugin-svelte';
|
|
import js from '@eslint/js';
|
|
import ts from 'typescript-eslint';
|
|
import { defineConfig, globalIgnores } from 'eslint/config';
|
|
import globals from 'globals';
|
|
|
|
export default defineConfig([
|
|
js.configs.recommended,
|
|
...ts.configs.recommended,
|
|
...astro.configs.recommended,
|
|
...svelte.configs.recommended,
|
|
{
|
|
languageOptions: {
|
|
globals: {
|
|
...globals.browser,
|
|
...globals.node
|
|
}
|
|
}
|
|
},
|
|
{
|
|
files: ['**/*.svelte'],
|
|
languageOptions: {
|
|
parserOptions: {
|
|
projectService: true,
|
|
extraFileExtensions: ['.svelte'],
|
|
parser: ts.parser
|
|
}
|
|
}
|
|
},
|
|
{
|
|
rules: {
|
|
'no-empty': ['error', { allowEmptyCatch: true }],
|
|
'no-unused-vars': 'off',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'error',
|
|
{
|
|
argsIgnorePattern: '^_',
|
|
caughtErrorsIgnorePattern: '^_',
|
|
destructuredArrayIgnorePattern: '^_',
|
|
varsIgnorePattern: '^_'
|
|
}
|
|
],
|
|
'@typescript-eslint/no-empty-object-type': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off'
|
|
}
|
|
},
|
|
globalIgnores(['.astro/*', '.devcontainer/*', 'dist/*'])
|
|
]);
|