Created
June 4, 2024 21:14
-
-
Save TeemuKoivisto/05c7eee930ecb468327debd5124dcba3 to your computer and use it in GitHub Desktop.
eslint.config.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import js from '@eslint/js' | |
import ts from 'typescript-eslint' | |
import svelte from 'eslint-plugin-svelte' | |
import prettier from 'eslint-config-prettier' | |
import globals from 'globals' | |
/** @type {import('eslint').Linter.FlatConfig[]} */ | |
export default [ | |
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/'] | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment