diff options
Diffstat (limited to 'src/packages/svelte/eslint.config.js')
-rw-r--r-- | src/packages/svelte/eslint.config.js | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/packages/svelte/eslint.config.js b/src/packages/svelte/eslint.config.js new file mode 100644 index 0000000..a526565 --- /dev/null +++ b/src/packages/svelte/eslint.config.js @@ -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/'] + } +); |