-
Notifications
You must be signed in to change notification settings - Fork 279
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump the site group across 1 directory with 9 updates (#1384)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ossama Hjaji <ossama-hjaji@live.fr>
- Loading branch information
1 parent
cec32d3
commit 81b4831
Showing
6 changed files
with
308 additions
and
304 deletions.
There are no files selected for viewing
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import eslintPluginSvelte from 'eslint-plugin-svelte'; | ||
import tsParser from '@typescript-eslint/parser'; | ||
import svelteParser from 'svelte-eslint-parser'; | ||
|
||
export default [ | ||
...eslintPluginSvelte.configs['flat/recommended'], | ||
{ | ||
languageOptions: { | ||
parser: tsParser, | ||
parserOptions: { | ||
extraFileExtensions: ['.svelte'], | ||
}, | ||
}, | ||
}, | ||
{ | ||
files: ['**/*.svelte', '*.svelte'], | ||
languageOptions: { | ||
parser: svelteParser, | ||
parserOptions: { | ||
parser: tsParser, | ||
}, | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.