We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit acf784bCopy full SHA for acf784b
.gitignore
@@ -0,0 +1,45 @@
1
+# Node modules
2
+node_modules/
3
+
4
+# Output directories
5
+dist/
6
+build/
7
+out/
8
9
+# Logs
10
+*.log
11
+npm-debug.log*
12
+yarn-debug.log*
13
+yarn-error.log*
14
15
+# System files
16
+.DS_Store
17
+Thumbs.db
18
19
+# Environment files
20
+.env
21
+.env.*
22
23
+# Playwright specific
24
+test-results/
25
+playwright-report/
26
+.vscode/.playwright/
27
28
+# Allure reports
29
+allure-results/
30
+allure-report/
31
32
+# Coverage reports
33
+coverage/
34
+lcov-report/
35
36
+# Compiled TypeScript
37
+*.tsbuildinfo
38
39
+# IDE settings
40
+.vscode/
41
+.idea/
42
43
+# Mac system file
44
+Icon?
45
+.DS_STORE
0 commit comments