-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
124 lines (103 loc) · 1.64 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# Dart/Flutter specific
## Dependency Management
.dart_tool/
.packages
.pub/
build/
## IDE
.idea/
.vscode/
## Generated files
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.packages
.pub/
build/
ios/Podfile.lock
ios/Pods/
*.iml
*.lock
.DS_Store
## Android
android/.gradle/
android/app/build/
android/build/
android/gradle/
android/gradlew
android/gradlew.bat
## iOS
ios/.symlinks/
ios/Flutter/.last_build_id
ios/Flutter/App.framework
ios/Flutter/Flutter.framework
ios/Flutter/Flutter.podspec
ios/Flutter/flutter_export_environment.sh
ios/Flutter/gen_snapshot
ios/Flutter/flutter_assets/
ios/Flutter/flutter_export_environment.sh
ios/Podfile.lock
ios/Pods/
ios/build/
ios/Flutter/App.framework
ios/Flutter/Flutter.framework
ios/Flutter/Flutter.podspec
## macOS specific
macos/Flutter/Flutter.podspec
## Web specific
web/packages/
web/assets/AssetManifest.json
web/assets/FontManifest.json
web/assets/NOTICES
web/assets/ios/
web/assets/flutter_service_worker.js
web/assets/VERSION
web/assets/favicon.ico
web/assets/flutter_logo.png
## Testing
# Reports
test_reports/
# Coverage
.coverage/
## Local configuration file (if any)
.env
.env.local
.env.*.local
## Logs and databases
*.log
*.sql
*.sqlite
## Dependency directories
node_modules/
bower_components/
jspm_packages/
## Build files
build/
dist/
out/
## Lock files
yarn.lock
package-lock.json
composer.lock
## Environment variables file
.env
## macOS
.DS_Store
## Windows
Thumbs.db
ehthumbs.db
## Compiled Python files
*.pyc
## Compiled Java classes
*.class
## Compiled C++ files
*.out
## Editor-specific files
*~
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
## Temporary files
*.swp
*~