github.com/willyham/dosa@v2.3.1-0.20171024181418-1e446d37ee71+incompatible/.gitignore (about)

     1  # Can't override overalls path
     2  overalls.coverprofile
     3  profile.coverprofile
     4  coverage.html
     5  
     6  # rest of file can be regenerated using the following URL:
     7  # Created by https://www.gitignore.io/api/go,node,intellij+iml,tags
     8  
     9  ### Go ###
    10  # Compiled Object files, Static and Dynamic libs (Shared Objects)
    11  *.o
    12  *.a
    13  *.so
    14  
    15  # Folders
    16  _obj
    17  _test
    18  
    19  # Architecture specific extensions/prefixes
    20  *.[568vq]
    21  [568vq].out
    22  
    23  *.cgo1.go
    24  *.cgo2.c
    25  _cgo_defun.c
    26  _cgo_gotypes.go
    27  _cgo_export.*
    28  
    29  _testmain.go
    30  
    31  *.exe
    32  *.test
    33  *.prof
    34  
    35  # Output of the go coverage tool, specifically when used with LiteIDE
    36  *.out
    37  
    38  # External packages folder
    39  vendor/
    40  
    41  # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
    42  .glide/
    43  
    44  ### Intellij+iml ###
    45  # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
    46  # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
    47  
    48  # User-specific stuff:
    49  .idea/workspace.xml
    50  .idea/tasks.xml
    51  
    52  # Sensitive or high-churn files:
    53  .idea/dataSources/
    54  .idea/dataSources.ids
    55  .idea/dataSources.xml
    56  .idea/dataSources.local.xml
    57  .idea/sqlDataSources.xml
    58  .idea/dynamic.xml
    59  .idea/uiDesigner.xml
    60  .idea/vcs.xml
    61  .idea/
    62  
    63  # Gradle:
    64  .idea/gradle.xml
    65  .idea/libraries
    66  
    67  # Mongo Explorer plugin:
    68  .idea/mongoSettings.xml
    69  
    70  ## File-based project format:
    71  *.iws
    72  
    73  ## Plugin-specific files:
    74  
    75  # IntelliJ
    76  /out/
    77  
    78  # mpeltonen/sbt-idea plugin
    79  .idea_modules/
    80  
    81  # JIRA plugin
    82  atlassian-ide-plugin.xml
    83  
    84  # Crashlytics plugin (for Android Studio and IntelliJ)
    85  com_crashlytics_export_strings.xml
    86  crashlytics.properties
    87  crashlytics-build.properties
    88  fabric.properties
    89  
    90  ### Intellij+iml Patch ###
    91  # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
    92  
    93  *.iml
    94  modules.xml
    95  .idea/misc.xml
    96  *.ipr
    97  
    98  ### Node ###
    99  # Logs
   100  logs
   101  *.log
   102  npm-debug.log*
   103  
   104  # Runtime data
   105  pids
   106  *.pid
   107  *.seed
   108  *.pid.lock
   109  
   110  # Directory for instrumented libs generated by jscoverage/JSCover
   111  lib-cov
   112  
   113  # Coverage directory used by tools like istanbul
   114  coverage
   115  
   116  # nyc test coverage
   117  .nyc_output
   118  
   119  # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
   120  .grunt
   121  
   122  # Bower dependency directory (https://bower.io/)
   123  bower_components
   124  
   125  # node-waf configuration
   126  .lock-wscript
   127  
   128  # Compiled binary addons (http://nodejs.org/api/addons.html)
   129  build/Release
   130  
   131  # Dependency directories
   132  node_modules
   133  jspm_packages
   134  
   135  # Optional npm cache directory
   136  .npm
   137  
   138  # Optional eslint cache
   139  .eslintcache
   140  
   141  # Optional REPL history
   142  .node_repl_history
   143  
   144  # Output of 'npm pack'
   145  *.tgz
   146  
   147  # Yarn Integrity file
   148  .yarn-integrity
   149  
   150  # dotenv environment variables file
   151  .env
   152  
   153  
   154  ### Tags ###
   155  # Ignore tags created by etags, ctags, gtags (GNU global) and cscope
   156  TAGS
   157  .TAGS
   158  !TAGS/
   159  tags
   160  .tags
   161  !tags/
   162  gtags.files
   163  GTAGS
   164  GRTAGS
   165  GPATH
   166  GSYMS
   167  cscope.files
   168  cscope.out
   169  cscope.in.out
   170  cscope.po.out
   171  
   172  
   173  ### VisualStudioCode ###
   174  .vscode/*
   175  !.vscode/settings.json
   176  !.vscode/tasks.json
   177  !.vscode/launch.json
   178  !.vscode/extensions.json
   179  
   180  # End of https://www.gitignore.io/api/go,node,intellij+iml,tags
   181