Test pre-commit hook v2
This commit is contained in:
parent
90a49722dd
commit
b1579467d2
36
.gitignore
vendored
36
.gitignore
vendored
@ -1,9 +1,15 @@
|
|||||||
# Miscellaneous
|
# === Miscellaneous ===
|
||||||
*.class
|
*.class
|
||||||
*.log
|
*.log
|
||||||
*.pyc
|
*.pyc
|
||||||
*.swp
|
*.swp
|
||||||
|
*.tmp
|
||||||
|
*.bak
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
ehthumbs.db
|
||||||
|
Desktop.ini
|
||||||
|
|
||||||
.atom/
|
.atom/
|
||||||
.build/
|
.build/
|
||||||
.buildlog/
|
.buildlog/
|
||||||
@ -12,34 +18,36 @@
|
|||||||
.swiftpm/
|
.swiftpm/
|
||||||
migrate_working_dir/
|
migrate_working_dir/
|
||||||
|
|
||||||
# IntelliJ related
|
# === IDEs and Editors ===
|
||||||
*.iml
|
*.iml
|
||||||
*.ipr
|
*.ipr
|
||||||
*.iws
|
*.iws
|
||||||
.idea/
|
.idea/
|
||||||
|
|
||||||
# The .vscode folder contains launch configuration and tasks you configure in
|
# VS Code (optional — uncomment if you don't want to track it)
|
||||||
# VS Code which you may wish to be included in version control, so this line
|
|
||||||
# is commented out by default.
|
|
||||||
#.vscode/
|
#.vscode/
|
||||||
|
|
||||||
# Flutter/Dart/Pub related
|
# === Flutter / Dart / Pub ===
|
||||||
**/doc/api/
|
**/doc/api/
|
||||||
**/ios/Flutter/.last_build_id
|
**/ios/Flutter/.last_build_id
|
||||||
|
|
||||||
.dart_tool/
|
.dart_tool/
|
||||||
.flutter-plugins
|
.flutter-plugins
|
||||||
.flutter-plugins-dependencies
|
.flutter-plugins-dependencies
|
||||||
.pub-cache/
|
.pub-cache/
|
||||||
.pub/
|
.pub/
|
||||||
/build/
|
build/
|
||||||
|
|
||||||
# Symbolication related
|
# === Android build artifacts ===
|
||||||
|
android/app/debug/
|
||||||
|
android/app/profile/
|
||||||
|
android/app/release/
|
||||||
|
|
||||||
|
# === Symbolication and Obfuscation ===
|
||||||
app.*.symbols
|
app.*.symbols
|
||||||
|
|
||||||
# Obfuscation related
|
|
||||||
app.*.map.json
|
app.*.map.json
|
||||||
|
|
||||||
# Android Studio will place build artifacts here
|
# === Optional: Simulation or FTP staging folders ===
|
||||||
/android/app/debug
|
#sim_output/
|
||||||
/android/app/profile
|
#ftp_staging/
|
||||||
/android/app/release
|
#temp_data/
|
||||||
|
|||||||
@ -437,4 +437,6 @@ class _RiverInSituStep1SamplingInfoState extends State<RiverInSituStep1SamplingI
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
print('debug');
|
||||||
Loading…
Reference in New Issue
Block a user