guessing_words/.gitignore

67 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-02-14 12:44:58 +03:00
# ---> Go cmd
2022-02-14 01:49:39 +03:00
# Binaries for programs and plugins
2022-02-14 12:44:58 +03:00
./cmd/*.exe
./cmd/*.exe~
./cmd/*.dll
./cmd/*.so
./cmd/*.dylib
2022-02-14 01:49:39 +03:00
# Test binary, built with `go test -c`
2022-02-14 12:44:58 +03:00
./cmd/*.test
2022-02-14 01:49:39 +03:00
# Output of the go coverage tool, specifically when used with LiteIDE
2022-02-14 12:44:58 +03:00
./cmd/*.out
2022-02-14 01:49:39 +03:00
# Dependency directories (remove the comment below to include it)
2022-02-14 12:44:58 +03:00
# ./cmd/vendor/
2022-02-14 01:49:39 +03:00
# ---> Dart
2022-02-14 01:57:47 +03:00
# Miscellaneous
2022-02-14 12:44:58 +03:00
./app/*.class
./app/*.log
./app/*.pyc
./app/*.swp
./app/.DS_Store
./app/.atom/
./app/.buildlog/
./app/.history
./app/.svn/
2022-02-14 01:49:39 +03:00
2022-02-14 01:57:47 +03:00
# IntelliJ related
2022-02-14 12:44:58 +03:00
./app/*.iml
./app/*.ipr
./app/*.iws
./app/.idea/
2022-02-14 01:57:47 +03:00
# 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
# is commented out by default.
#.vscode/
2022-02-14 01:49:39 +03:00
2022-02-14 01:57:47 +03:00
# Flutter/Dart/Pub related
2022-02-14 12:44:58 +03:00
./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/
2022-02-14 01:57:47 +03:00
# Web related
2022-02-14 12:44:58 +03:00
./app/lib/generated_plugin_registrant.dart
2022-02-14 01:57:47 +03:00
# Symbolication related
2022-02-14 12:44:58 +03:00
./app/app.*.symbols
2022-02-14 01:57:47 +03:00
# Obfuscation related
2022-02-14 12:44:58 +03:00
./app/app.*.map.json
2022-02-14 01:57:47 +03:00
# Android Studio will place build artifacts here
2022-02-14 12:44:58 +03:00
./app//android/app/debug
./app//android/app/profile
./app//android/app/release
2022-02-14 01:49:39 +03:00