github.com/abolfazlbeh/zhycan@v0.0.0-20230819144214-24cf38237387/.gitignore (about) 1 ### JetBrains template 2 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider 3 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 4 5 # User-specific stuff 6 .idea/* 7 8 # Gradle and Maven with auto-import 9 # When using Gradle or Maven with auto-import, you should exclude module files, 10 # since they will be recreated, and may cause churn. Uncomment if using 11 # auto-import. 12 # .idea/artifacts 13 # .idea/compiler.xml 14 # .idea/jarRepositories.xml 15 # .idea/modules.xml 16 # .idea/*.iml 17 # .idea/modules 18 # *.iml 19 # *.ipr 20 21 # CMake 22 cmake-build-*/ 23 24 # Mongo Explorer plugin 25 .idea/**/mongoSettings.xml 26 27 # File-based project format 28 *.iws 29 30 # IntelliJ 31 out/ 32 33 # mpeltonen/sbt-idea plugin 34 .idea_modules/ 35 36 # JIRA plugin 37 atlassian-ide-plugin.xml 38 39 # Cursive Clojure plugin 40 .idea/replstate.xml 41 42 # Crashlytics plugin (for Android Studio and IntelliJ) 43 com_crashlytics_export_strings.xml 44 crashlytics.properties 45 crashlytics-build.properties 46 fabric.properties 47 48 # Editor-based Rest Client 49 .idea/httpRequests 50 51 # Android studio 3.1+ serialized cache file 52 .idea/caches/build_file_checksums.ser 53 54 ### Go template 55 # Binaries for programs and plugins 56 *.exe 57 *.exe~ 58 *.dll 59 *.so 60 *.dylib 61 62 # Test binary, built with `go test -c` 63 *.test 64 65 # Output of the go coverage tool, specifically when used with LiteIDE 66 *.out 67 68 # Dependency directories (remove the comment below to include it) 69 # vendor/ 70 71 ### VisualStudioCode template 72 .vscode/* 73 !.vscode/settings.json 74 !.vscode/tasks.json 75 !.vscode/launch.json 76 !.vscode/extensions.json 77 *.code-workspace 78 79 # Local History for Visual Studio Code 80 .history/ 81 82 ### Xcode template 83 # Xcode 84 # 85 # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 86 87 ## User settings 88 xcuserdata/ 89 90 ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) 91 *.xcscmblueprint 92 *.xccheckout 93 94 ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) 95 build/ 96 DerivedData/ 97 *.moved-aside 98 *.pbxuser 99 !default.pbxuser 100 *.mode1v3 101 !default.mode1v3 102 *.mode2v3 103 !default.mode2v3 104 *.perspectivev3 105 !default.perspectivev3 106 107 ## Gcc Patch 108 /*.gcno 109