github.com/abolfazlbeh/zhycan@v0.0.0-20230819144214-24cf38237387/cmd/cmd_main/commands/templates/gitignore.gotmpl (about)

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