File tree Expand file tree Collapse file tree 2 files changed +84
-4012
lines changed Expand file tree Collapse file tree 2 files changed +84
-4012
lines changed Original file line number Diff line number Diff line change 1+ # Development files
2+ * .md
3+ README.md
4+ CONTRIBUTING.md
5+ CHANGELOG.md
6+
7+ # Documentation files
8+ docs /**
9+ develop-docs /**
10+
11+ # Git files
12+ .git /**
13+ .gitignore
14+
15+ # IDE files
16+ .vscode /**
17+ .cursor /**
18+
19+ # Tests
20+ * .test.js
21+ * .test.ts
22+ * .spec.js
23+ * .spec.ts
24+ __tests__ /**
25+ tests /**
26+
27+ # Development tools
28+ .eslintrc.js
29+ .eslintignore
30+ .prettierrc
31+ prettier.config.js
32+ .editorconfig
33+
34+ # Scripts
35+ scripts /**
36+ bin /**
37+
38+ # Development dependencies that aren't needed in production
39+ vitest.config.mjs
40+ setup-test-env.js
41+
42+ # Large files that aren't needed for the build
43+ * .pdf
44+ * .gif
45+ * .png
46+ * .jpg
47+ * .jpeg
48+ public /mdx-images /**
49+ yarn.lock
50+
51+ # CI/CD files
52+ .github /**
53+ .craft.yml
54+ .pre-commit-config.yaml
55+
56+ # Docker files
57+ docker-compose.yml
58+ Dockerfile
59+
60+ # Build artifacts from previous builds
61+ .next /**
62+ dist /**
63+ build /**
64+
65+ # Temporary files
66+ tmp /**
67+ temp /**
You can’t perform that action at this time.
0 commit comments