File tree 1 file changed +38
-1
lines changed
1 file changed +38
-1
lines changed Original file line number Diff line number Diff line change 1
- yarn.lock
1
+ # Ignore node_modules (dependencies)
2
+ node_modules /
3
+
4
+ # Ignore build or dist folders (if applicable)
5
+ dist /
6
+
7
+ # Ignore environment variables
8
+ .env
9
+
10
+ # Ignore package lock and yarn lock files
11
+ yarn.lock
12
+
13
+ # Ignore logs
14
+ logs /
15
+ * .log
16
+
17
+ # Ignore coverage folder for tests
18
+ coverage /
19
+
20
+ # Ignore the public assets folder (if you don't want to format static files)
21
+ public /
22
+
23
+ # Ignore the database migration files or generated SQL files (if applicable)
24
+ migrations /
25
+ * .sql
26
+
27
+ # Ignore any Docker-related files
28
+ docker-compose.yml
29
+ Dockerfile
30
+
31
+ # Ignore configuration files for other tools or IDE-specific files
32
+ * .config.js
33
+ * .config.ts
34
+ .idea /
35
+ .vscode /
36
+
37
+ # Ignore git files and folders
38
+ .git /
You can’t perform that action at this time.
0 commit comments