File size: 575 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
// @ts-check
import pluginSvelte from 'eslint-plugin-svelte'
import rootConfig from './root.eslint.config.js'
import svelteConfig from './svelte.config.js'
export default [
...rootConfig,
...pluginSvelte.configs['flat/recommended'],
{
files: ['**/*.svelte'],
languageOptions: {
parserOptions: {
parser: '@typescript-eslint/parser',
svelteConfig,
},
},
},
{
rules: {
'svelte/block-lang': ['error', { script: ['ts'] }],
'svelte/no-svelte-internal': 'error',
'svelte/valid-compile': 'off',
},
},
]
|