Skip to content

Commit e4c082d

Browse files
committed
Fixed gitignore
1 parent faf1e90 commit e4c082d

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

open_file_mac/.gitignore

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,9 @@
55
*.swp
66
.DS_Store
77
.atom/
8-
.build/
98
.buildlog/
109
.history
1110
.svn/
12-
.swiftpm/
1311
migrate_working_dir/
1412

1513
# IntelliJ related
@@ -21,4 +19,11 @@ migrate_working_dir/
2119
# The .vscode folder contains launch configuration and tasks you configure in
2220
# VS Code which you may wish to be included in version control, so this line
2321
# is commented out by default.
24-
#.vscode/
22+
#.vscode/
23+
24+
# Flutter/Dart/Pub related
25+
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
26+
/pubspec.lock
27+
**/doc/api/
28+
.dart_tool/
29+
build/

open_file_mac/example/.gitignore

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,9 @@ migrate_working_dir/
3232
.pub-cache/
3333
.pub/
3434
/build/
35-
**/Flutter/ephemeral/
36-
**/Pods/
35+
36+
# Symbolication related
37+
app.*.symbols
38+
39+
# Obfuscation related
40+
app.*.map.json
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Flutter-related
2+
**/Flutter/ephemeral/
3+
**/Pods/
4+
5+
# Xcode-related
6+
**/dgph
7+
**/xcuserdata/

0 commit comments

Comments
 (0)