Skip to content

Commit d0ab6fd

Browse files
committed
Merge branch 'main' into smaller-font
2 parents 8de7059 + f123a7c commit d0ab6fd

File tree

177 files changed

+13608
-4142
lines changed

Some content is hidden

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

177 files changed

+13608
-4142
lines changed

.eslintignore

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

.eslintrc.cjs

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

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.github/workflows/pnpm-check.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: pnpm check
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
9+
jobs:
10+
pnpm-check:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: pnpm/action-setup@v3
15+
with:
16+
version: 9
17+
- name: Setup Node.js
18+
uses: actions/setup-node@v4
19+
with:
20+
node-version: 20
21+
cache: 'pnpm'
22+
- name: Copy environment file
23+
run: cp template.env .env
24+
- name: Install dependencies
25+
run: pnpm install --frozen-lockfile
26+
- name: Compile Paraglide
27+
run: pnpm inlang:settings
28+
- name: Run pnpm check
29+
run: pnpm check
30+
- name: Run pnpm lint
31+
run: pnpm lint

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,5 @@ deno.lock
2323
/project.inlang/settings.json
2424
/src/lib/generated
2525
/src/temp
26+
/l10n-cage
2627

27-
# Environment-specific cache files
28-
/.inlang-settings-cache.json

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.20.7
1+
24.2.0

.prettierrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"singleQuote": true,
55
"trailingComma": "none",
66
"printWidth": 100,
7+
"endOfLine": "auto",
78
"plugins": ["prettier-plugin-svelte"],
89
"overrides": [
910
{

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"recommendations": [
33
"inlang.vs-code-extension",
44
"dbaeumer.vscode-eslint",
5-
"esbenp.prettier-vscode"
5+
"esbenp.prettier-vscode",
6+
"svelte.svelte-vscode"
67
]
78
}

.vscode/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@
44
"language": "markdown",
55
"scheme": "file"
66
}
7-
]
7+
],
8+
"eslint.useFlatConfig": true,
9+
"eslint.validate": ["svelte"]
810
}

.zed/tasks.json

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

0 commit comments

Comments
 (0)