Skip to content

Commit 459bc51

Browse files
committed
feat: add project files and enhance gitignore
1 parent 6951307 commit 459bc51

File tree

94 files changed

+20008
-0
lines changed

Some content is hidden

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

94 files changed

+20008
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/usr/bin/env bash
2+
npm run dev

.cursor/rules/riper-5.mdc

Lines changed: 449 additions & 0 deletions
Large diffs are not rendered by default.

.gitignore

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
# Dependencies
11+
node_modules
12+
13+
# Build output
14+
dist
15+
dist-ssr
16+
build
17+
*.local
18+
19+
# Editor directories and files
20+
.vscode/*
21+
!.vscode/extensions.json
22+
.idea
23+
.DS_Store
24+
*.suo
25+
*.ntvs*
26+
*.njsproj
27+
*.sln
28+
*.sw?
29+
30+
# OS files
31+
.DS_Store
32+
Thumbs.db
33+
34+
# Environment files
35+
.env
36+
.env.local
37+
.env.*.local
38+
39+
# Test coverage
40+
coverage
41+
42+
# Cache
43+
.cache
44+
*.tsbuildinfo
45+
46+
# Playwright
47+
playwright-report
48+
test-results
49+
50+
# Backup files
51+
*.bak
52+
53+
54+
# Nested git repositories
55+
leetcode-139-word-break/

0 commit comments

Comments
 (0)