Skip to content

Commit 1ee037c

Browse files
committed
feat: begin next port
1 parent 74362c0 commit 1ee037c

File tree

228 files changed

+2767
-8038
lines changed

Some content is hidden

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

228 files changed

+2767
-8038
lines changed

.editorconfig

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
root = true
22

33
[*]
4-
end_of_line = lf
5-
insert_final_newline = true
4+
charset = utf-8
5+
end_of_line = crlf
66
indent_size = 2
7+
indent_style = space
8+
insert_final_newline = false
9+
max_line_length = 120
10+
tab_width = 4

.env.example

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Since the ".env" file is gitignored, you can use the ".env.example" file to
2+
# build a new ".env" file when you clone the repo. Keep this file up-to-date
3+
# when you add new variables to `.env`.
4+
5+
# This file will be committed to version control, so make sure not to have any
6+
# secrets in it. If you are cloning this repo, create a copy of this file named
7+
# ".env" and populate it with your secrets.
8+
9+
# When adding additional environment variables, the schema in "/src/env.js"
10+
# should be updated accordingly.
11+
12+
# Example:
13+
# SERVERVAR="foo"
14+
# NEXT_PUBLIC_CLIENTVAR="bar"

.eslintignore

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

.eslintrc.cjs

Lines changed: 0 additions & 34 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 eol=lf

.github/workflows/linting.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Code quality
2+
3+
on:
4+
push:
5+
6+
jobs:
7+
quality:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
- name: Setup Biome
13+
uses: biomejs/setup-biome@v2
14+
- name: Run Biome
15+
run: biome ci .

.gitignore

Lines changed: 46 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,52 @@
1-
.DS_Store
2-
node_modules
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
public/sitemap.xml
15+
.vercel
16+
next-env.d.ts
17+
.open-next
18+
19+
# production
320
/build
4-
/.svelte-kit
5-
/.vercel
6-
/package
21+
*.xml
22+
# rss feed
23+
/public/feed.xml
24+
25+
# misc
26+
.DS_Store
27+
28+
# debug
29+
*.log
30+
npm-debug.log*
31+
yarn-debug.log*
32+
yarn-error.log*
33+
34+
# local env files
735
.env
8-
.env.*
9-
!.env.example
36+
.env.local
37+
.env.*.local
1038

11-
.idea/*
12-
!.idea/codeStyles
13-
!.idea/inspectionProfiles
14-
!.idea/jsLinters
15-
!.idea/prettier.xml
39+
# idea
40+
.idea
1641

17-
.vscode
42+
# Content Collections
43+
.content-collections
1844

19-
yarn-error.log
20-
.vercel
45+
# Sentry Config File
46+
.env.sentry-build-plugin
47+
48+
# typescript
49+
tsconfig.tsbuildinfo
2150

22-
# Static Deps
23-
static/motion-canvas
51+
# Claude
52+
.claude/settings.local.json

.hintrc

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

.idea/codeStyles/Project.xml

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

.idea/codeStyles/codeStyleConfig.xml

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

0 commit comments

Comments
 (0)