Skip to content

Commit 81b4831

Browse files
Bump the site group across 1 directory with 9 updates (#1384)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ossama Hjaji <[email protected]>
1 parent cec32d3 commit 81b4831

File tree

6 files changed

+308
-304
lines changed

6 files changed

+308
-304
lines changed

.github/workflows/vercel-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup Node
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: 16.x
26+
node-version: 20
2727
cache: npm
2828
cache-dependency-path: docs/vercel/package-lock.json
2929

docs/vercel/.eslintrc.cjs

Lines changed: 0 additions & 22 deletions
This file was deleted.

docs/vercel/eslint.config.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import eslintPluginSvelte from 'eslint-plugin-svelte';
2+
import tsParser from '@typescript-eslint/parser';
3+
import svelteParser from 'svelte-eslint-parser';
4+
5+
export default [
6+
...eslintPluginSvelte.configs['flat/recommended'],
7+
{
8+
languageOptions: {
9+
parser: tsParser,
10+
parserOptions: {
11+
extraFileExtensions: ['.svelte'],
12+
},
13+
},
14+
},
15+
{
16+
files: ['**/*.svelte', '*.svelte'],
17+
languageOptions: {
18+
parser: svelteParser,
19+
parserOptions: {
20+
parser: tsParser,
21+
},
22+
},
23+
},
24+
];

0 commit comments

Comments
 (0)