Skip to content

Commit b6c350b

Browse files
authored
Merge pull request #15 from TraceLD/rewrite
Rewrite the project to modern React
2 parents 8410c27 + 9269e78 commit b6c350b

76 files changed

Lines changed: 10633 additions & 20043 deletions

Some content is hidden

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

.gitignore

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
debug/
4+
target/
5+
6+
# These are backup files generated by rustfmt
7+
**/*.rs.bk
8+
9+
# MSVC Windows builds of rustc generate these, which store debugging information
10+
*.pdb
11+
12+
# RustRover
13+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
14+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
15+
# and can be added to the global gitignore or merged into this file. For a more nuclear
16+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
17+
.idea/
18+
19+
.vercel/
20+
21+
# Logs
22+
logs
23+
*.log
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
pnpm-debug.log*
28+
lerna-debug.log*
29+
30+
node_modules
31+
dist
32+
dist-ssr
33+
*.local
34+
35+
# Editor directories and files
36+
.vscode/*
37+
!.vscode/extensions.json
38+
.idea
39+
.DS_Store
40+
*.suo
41+
*.ntvs*
42+
*.njsproj
43+
*.sln
44+
*.sw?
45+
.vercel

.prettierignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
node_packages/
2+
public/
3+
dist/
4+
temp/
5+
README.md
6+
LICENSE.md
7+
pnpm-lock.yaml
8+
pnpm-workspace.yaml
9+
package-lock.json
10+
Cargo.lock
11+
12+
target/
13+
**/*.rs
14+
**/*.toml

.prettierrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"tabWidth": 2,
3+
"semi": true,
4+
"singleQuote": true,
5+
"plugins": ["prettier-plugin-tailwindcss"]
6+
}

COLORS

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

0 commit comments

Comments
 (0)