Skip to content

Commit 6b30a37

Browse files
committed
Progress
1 parent ff5b9ff commit 6b30a37

63 files changed

Lines changed: 6931 additions & 1516 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414

1515
- uses: actions/setup-node@v4
1616
with:
17-
node-version: '22'
18-
cache: 'npm'
17+
node-version: "22"
18+
cache: "npm"
1919

2020
- run: npm ci
2121
- run: npm run lint

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
dist
2+
node_modules
3+
.svelte-kit

biome.json

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

eslint.config.js

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import js from "@eslint/js";
2+
import ts from "typescript-eslint";
3+
import svelte from "eslint-plugin-svelte";
4+
import svelteParser from "svelte-eslint-parser";
5+
import prettier from "eslint-config-prettier";
6+
7+
export default [
8+
js.configs.recommended,
9+
...ts.configs.recommended,
10+
...svelte.configs.recommended,
11+
prettier,
12+
{
13+
rules: {
14+
"@typescript-eslint/no-unused-vars": [
15+
"error",
16+
{ argsIgnorePattern: "^_", varsIgnorePattern: "^_" },
17+
],
18+
},
19+
},
20+
{
21+
files: ["**/*.svelte"],
22+
languageOptions: {
23+
parser: svelteParser,
24+
parserOptions: {
25+
parser: ts.parser,
26+
},
27+
},
28+
},
29+
{
30+
ignores: ["**/dist", "**/node_modules", "**/.svelte-kit"],
31+
},
32+
];

0 commit comments

Comments
 (0)