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