Skip to content

Commit f985400

Browse files
committed
chore: ignore .cursor/ directory in git
Add .cursor/ to .gitignore to prevent Cursor IDE files and rules from being tracked or pushed to GitHub.
1 parent 3e70b89 commit f985400

File tree

1 file changed

+38
-0
lines changed

1 file changed

+38
-0
lines changed

e2e_Playwright_Tests/.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Dependencies
2+
node_modules/
3+
package-lock.json
4+
5+
# Test results
6+
test-results/
7+
playwright-report/
8+
playwright/.cache/
9+
10+
# Screenshots
11+
test-results/screenshots/
12+
13+
# User data
14+
user-data-dir/
15+
16+
# Environment
17+
.env
18+
.env.local
19+
20+
# Build output
21+
dist/
22+
tsconfig.tsbuildinfo
23+
24+
# OS
25+
.DS_Store
26+
Thumbs.db
27+
28+
# IDE
29+
.vscode/
30+
.idea/
31+
*.swp
32+
*.swo
33+
*.mdc
34+
35+
# Cursor IDE
36+
.cursor/
37+
.cursor/**
38+

0 commit comments

Comments
 (0)