Skip to content

Commit 4c072f6

Browse files
committed
Regenerate & cleanup .gitignores & .pubignores
Removed leftover inverted polygons example from #2046
1 parent f238439 commit 4c072f6

File tree

11 files changed

+622
-279
lines changed

11 files changed

+622
-279
lines changed

.gitattributes

Lines changed: 0 additions & 11 deletions
This file was deleted.

.gitignore

Lines changed: 7 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@
88
.buildlog/
99
.history
1010
.svn/
11-
.fvm/
11+
migrate_working_dir/
12+
13+
# For contributors using FVM
14+
.fvm/
1215

1316
# IntelliJ related
1417
*.iml
@@ -19,62 +22,13 @@
1922
# The .vscode folder contains launch configuration and tasks you configure in
2023
# VS Code which you may wish to be included in version control, so this line
2124
# is commented out by default.
22-
.vscode/
25+
#.vscode/
2326

2427
# Flutter/Dart/Pub related
28+
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
29+
/pubspec.lock
2530
**/doc/api/
2631
.dart_tool/
2732
.flutter-plugins
2833
.flutter-plugins-dependencies
29-
.packages
30-
.pub-cache/
31-
.pub/
3234
build/
33-
pubspec.lock
34-
35-
# Android related
36-
**/android/**/gradle-wrapper.jar
37-
**/android/.gradle
38-
**/android/captures/
39-
**/android/gradlew
40-
**/android/gradlew.bat
41-
**/android/local.properties
42-
**/android/**/GeneratedPluginRegistrant.java
43-
**/android/app/.cxx
44-
45-
# iOS/XCode related
46-
**/ios/**/*.mode1v3
47-
**/ios/**/*.mode2v3
48-
**/ios/**/*.moved-aside
49-
**/ios/**/*.pbxuser
50-
**/ios/**/*.perspectivev3
51-
**/ios/**/*sync/
52-
**/ios/**/.sconsign.dblite
53-
**/ios/**/.tags*
54-
**/ios/**/.vagrant/
55-
**/ios/**/DerivedData/
56-
**/ios/**/Icon?
57-
**/ios/**/Pods/
58-
**/ios/**/.symlinks/
59-
**/ios/**/profile
60-
**/ios/**/xcuserdata
61-
**/ios/.generated/
62-
**/ios/Flutter/App.framework
63-
**/ios/Flutter/Flutter.framework
64-
**/ios/Flutter/Flutter.podspec
65-
**/ios/Flutter/Generated.xcconfig
66-
**/ios/Flutter/app.flx
67-
**/ios/Flutter/app.zip
68-
**/ios/Flutter/flutter_assets/
69-
**/ios/Flutter/flutter_export_environment.sh
70-
**/ios/ServiceDefinitions.json
71-
**/ios/Runner/GeneratedPluginRegistrant.*
72-
73-
# Exceptions to above rules.
74-
!**/ios/**/default.mode1v3
75-
!**/ios/**/default.mode2v3
76-
!**/ios/**/default.pbxuser
77-
!**/ios/**/default.perspectivev3
78-
79-
# Coverage files
80-
coverage/

.pubignore

Lines changed: 8 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
firebase.json
22
.firebaserc
33
codecov.yml
4-
example/tool/**
5-
example/assets/**
64

7-
# From gitignore
5+
# From gitignore. See https://github.com/dart-lang/pub/issues/4545.
86

97
# Miscellaneous
108
*.class
@@ -16,7 +14,10 @@ example/assets/**
1614
.buildlog/
1715
.history
1816
.svn/
19-
.fvm/
17+
migrate_working_dir/
18+
19+
# For contributors using FVM
20+
.fvm/
2021

2122
# IntelliJ related
2223
*.iml
@@ -27,62 +28,13 @@ example/assets/**
2728
# The .vscode folder contains launch configuration and tasks you configure in
2829
# VS Code which you may wish to be included in version control, so this line
2930
# is commented out by default.
30-
.vscode/
31+
#.vscode/
3132

3233
# Flutter/Dart/Pub related
34+
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
35+
/pubspec.lock
3336
**/doc/api/
3437
.dart_tool/
3538
.flutter-plugins
3639
.flutter-plugins-dependencies
37-
.packages
38-
.pub-cache/
39-
.pub/
4040
build/
41-
pubspec.lock
42-
43-
# Android related
44-
**/android/**/gradle-wrapper.jar
45-
**/android/.gradle
46-
**/android/captures/
47-
**/android/gradlew
48-
**/android/gradlew.bat
49-
**/android/local.properties
50-
**/android/**/GeneratedPluginRegistrant.java
51-
**/android/app/.cxx
52-
53-
# iOS/XCode related
54-
**/ios/**/*.mode1v3
55-
**/ios/**/*.mode2v3
56-
**/ios/**/*.moved-aside
57-
**/ios/**/*.pbxuser
58-
**/ios/**/*.perspectivev3
59-
**/ios/**/*sync/
60-
**/ios/**/.sconsign.dblite
61-
**/ios/**/.tags*
62-
**/ios/**/.vagrant/
63-
**/ios/**/DerivedData/
64-
**/ios/**/Icon?
65-
**/ios/**/Pods/
66-
**/ios/**/.symlinks/
67-
**/ios/**/profile
68-
**/ios/**/xcuserdata
69-
**/ios/.generated/
70-
**/ios/Flutter/App.framework
71-
**/ios/Flutter/Flutter.framework
72-
**/ios/Flutter/Flutter.podspec
73-
**/ios/Flutter/Generated.xcconfig
74-
**/ios/Flutter/app.flx
75-
**/ios/Flutter/app.zip
76-
**/ios/Flutter/flutter_assets/
77-
**/ios/Flutter/flutter_export_environment.sh
78-
**/ios/ServiceDefinitions.json
79-
**/ios/Runner/GeneratedPluginRegistrant.*
80-
81-
# Exceptions to above rules.
82-
!**/ios/**/default.mode1v3
83-
!**/ios/**/default.mode2v3
84-
!**/ios/**/default.pbxuser
85-
!**/ios/**/default.perspectivev3
86-
87-
# Coverage files
88-
coverage/

example/.gitignore

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,12 @@
55
*.swp
66
.DS_Store
77
.atom/
8+
.build/
89
.buildlog/
910
.history
1011
.svn/
12+
.swiftpm/
13+
migrate_working_dir/
1114

1215
# IntelliJ related
1316
*.iml
@@ -18,27 +21,18 @@
1821
# The .vscode folder contains launch configuration and tasks you configure in
1922
# VS Code which you may wish to be included in version control, so this line
2023
# is commented out by default.
21-
.vscode/
24+
#.vscode/
2225

2326
# Flutter/Dart/Pub related
2427
**/doc/api/
2528
**/ios/Flutter/.last_build_id
2629
.dart_tool/
2730
.flutter-plugins
2831
.flutter-plugins-dependencies
29-
.packages
3032
.pub-cache/
3133
.pub/
3234
/build/
3335

34-
# Gets generated when running the app and we don't need anything special in the
35-
# Podfile so we can ignore it and let flutter generate it.
36-
ios/Podfile
37-
# TODO: document why we don't want this file
38-
pubspec.lock
39-
40-
# Web related
41-
4236
# Symbolication related
4337
app.*.symbols
4438

@@ -48,4 +42,4 @@ app.*.map.json
4842
# Android Studio will place build artifacts here
4943
/android/app/debug
5044
/android/app/profile
51-
/android/app/release
45+
/android/app/release

example/.metadata

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file should be version controlled and should not be manually edited.
55

66
version:
7-
revision: "463e7516406b4ba7814703616da0e475523db54c"
7+
revision: "6e74ee483380f2d8ec77f08ce23f891af9a03933"
88
channel: "master"
99

1010
project_type: app
@@ -13,11 +13,11 @@ project_type: app
1313
migration:
1414
platforms:
1515
- platform: root
16-
create_revision: 463e7516406b4ba7814703616da0e475523db54c
17-
base_revision: 463e7516406b4ba7814703616da0e475523db54c
18-
- platform: ios
19-
create_revision: 463e7516406b4ba7814703616da0e475523db54c
20-
base_revision: 463e7516406b4ba7814703616da0e475523db54c
16+
create_revision: 6e74ee483380f2d8ec77f08ce23f891af9a03933
17+
base_revision: 6e74ee483380f2d8ec77f08ce23f891af9a03933
18+
- platform: android
19+
create_revision: 6e74ee483380f2d8ec77f08ce23f891af9a03933
20+
base_revision: 6e74ee483380f2d8ec77f08ce23f891af9a03933
2121

2222
# User provided section
2323

example/.pubignore

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/tool/
2+
/assets/
3+
4+
# From gitignore. See https://github.com/dart-lang/pub/issues/4545.
5+
6+
# Miscellaneous
7+
*.class
8+
*.log
9+
*.pyc
10+
*.swp
11+
.DS_Store
12+
.atom/
13+
.build/
14+
.buildlog/
15+
.history
16+
.svn/
17+
.swiftpm/
18+
migrate_working_dir/
19+
20+
# IntelliJ related
21+
*.iml
22+
*.ipr
23+
*.iws
24+
.idea/
25+
26+
# The .vscode folder contains launch configuration and tasks you configure in
27+
# VS Code which you may wish to be included in version control, so this line
28+
# is commented out by default.
29+
#.vscode/
30+
31+
# Flutter/Dart/Pub related
32+
**/doc/api/
33+
**/ios/Flutter/.last_build_id
34+
.dart_tool/
35+
.flutter-plugins
36+
.flutter-plugins-dependencies
37+
.pub-cache/
38+
.pub/
39+
/build/
40+
41+
# Symbolication related
42+
app.*.symbols
43+
44+
# Obfuscation related
45+
app.*.map.json
46+
47+
# Android Studio will place build artifacts here
48+
/android/app/debug
49+
/android/app/profile
50+
/android/app/release

example/android/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ gradle-wrapper.jar
55
/gradlew.bat
66
/local.properties
77
GeneratedPluginRegistrant.java
8+
.cxx/
89

910
# Remember to never publicly share your keystore.
1011
# See https://flutter.dev/to/reference-keystore

example/lib/main.dart

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import 'package:flutter_map_example/pages/epsg4326_crs.dart';
99
import 'package:flutter_map_example/pages/fallback_url_page.dart';
1010
import 'package:flutter_map_example/pages/home.dart';
1111
import 'package:flutter_map_example/pages/interactive_test_page.dart';
12-
import 'package:flutter_map_example/pages/inverted_polygons.dart';
1312
import 'package:flutter_map_example/pages/latlng_to_screen_point.dart';
1413
import 'package:flutter_map_example/pages/many_circles.dart';
1514
import 'package:flutter_map_example/pages/many_markers.dart';
@@ -69,7 +68,6 @@ class MyApp extends StatelessWidget {
6968
OverlayImagePage.route: (context) => const OverlayImagePage(),
7069
PolygonPage.route: (context) => const PolygonPage(),
7170
MultiWorldsPage.route: (context) => const MultiWorldsPage(),
72-
InvertedPolygonsPage.route: (context) => const InvertedPolygonsPage(),
7371
PolygonPerfStressPage.route: (context) => const PolygonPerfStressPage(),
7472
SlidingMapPage.route: (_) => const SlidingMapPage(),
7573
WMSLayerPage.route: (context) => const WMSLayerPage(),

0 commit comments

Comments
 (0)