ingnore in path
This commit is contained in:
parent
80ba17dd3b
commit
13fa4214cf
|
@ -1,37 +1,38 @@
|
|||
# ---> Go
|
||||
# ---> Go cmd
|
||||
# Binaries for programs and plugins
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
./cmd/*.exe
|
||||
./cmd/*.exe~
|
||||
./cmd/*.dll
|
||||
./cmd/*.so
|
||||
./cmd/*.dylib
|
||||
|
||||
# Test binary, built with `go test -c`
|
||||
*.test
|
||||
./cmd/*.test
|
||||
|
||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||
*.out
|
||||
./cmd/*.out
|
||||
|
||||
# Dependency directories (remove the comment below to include it)
|
||||
# vendor/
|
||||
# ./cmd/vendor/
|
||||
|
||||
|
||||
# ---> Dart
|
||||
# Miscellaneous
|
||||
*.class
|
||||
*.log
|
||||
*.pyc
|
||||
*.swp
|
||||
.DS_Store
|
||||
.atom/
|
||||
.buildlog/
|
||||
.history
|
||||
.svn/
|
||||
./app/*.class
|
||||
./app/*.log
|
||||
./app/*.pyc
|
||||
./app/*.swp
|
||||
./app/.DS_Store
|
||||
./app/.atom/
|
||||
./app/.buildlog/
|
||||
./app/.history
|
||||
./app/.svn/
|
||||
|
||||
# IntelliJ related
|
||||
*.iml
|
||||
*.ipr
|
||||
*.iws
|
||||
.idea/
|
||||
./app/*.iml
|
||||
./app/*.ipr
|
||||
./app/*.iws
|
||||
./app/.idea/
|
||||
|
||||
# The .vscode folder contains launch configuration and tasks you configure in
|
||||
# VS Code which you may wish to be included in version control, so this line
|
||||
|
@ -39,27 +40,27 @@
|
|||
#.vscode/
|
||||
|
||||
# Flutter/Dart/Pub related
|
||||
**/doc/api/
|
||||
**/ios/Flutter/.last_build_id
|
||||
.dart_tool/
|
||||
.flutter-plugins
|
||||
.flutter-plugins-dependencies
|
||||
.packages
|
||||
.pub-cache/
|
||||
.pub/
|
||||
/build/
|
||||
./app/**/doc/api/
|
||||
./app/**/ios/Flutter/.last_build_id
|
||||
./app/.dart_tool/
|
||||
./app/.flutter-plugins
|
||||
./app/.flutter-plugins-dependencies
|
||||
./app/.packages
|
||||
./app/.pub-cache/
|
||||
./app/.pub/
|
||||
./app//build/
|
||||
|
||||
# Web related
|
||||
lib/generated_plugin_registrant.dart
|
||||
./app/lib/generated_plugin_registrant.dart
|
||||
|
||||
# Symbolication related
|
||||
app.*.symbols
|
||||
./app/app.*.symbols
|
||||
|
||||
# Obfuscation related
|
||||
app.*.map.json
|
||||
./app/app.*.map.json
|
||||
|
||||
# Android Studio will place build artifacts here
|
||||
/android/app/debug
|
||||
/android/app/profile
|
||||
/android/app/release
|
||||
./app//android/app/debug
|
||||
./app//android/app/profile
|
||||
./app//android/app/release
|
||||
|
||||
|
|
Loading…
Reference in New Issue