snowflake

Snowflake ID Generator
git clone git://git.lair.cx/snowflake
Log | Files | Refs | LICENSE

.gitignore (4370B)


      1 # Created by https://www.toptal.com/developers/gitignore/api/linux,macos,windows,goland,visualstudiocode
      2 # Edit at https://www.toptal.com/developers/gitignore?templates=linux,macos,windows,goland,visualstudiocode
      3 
      4 ### GoLand ###
      5 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
      6 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
      7 
      8 # User-specific stuff
      9 .idea/**/workspace.xml
     10 .idea/**/tasks.xml
     11 .idea/**/usage.statistics.xml
     12 .idea/**/dictionaries
     13 .idea/**/shelf
     14 
     15 # AWS User-specific
     16 .idea/**/aws.xml
     17 
     18 # Generated files
     19 .idea/**/contentModel.xml
     20 
     21 # Sensitive or high-churn files
     22 .idea/**/dataSources/
     23 .idea/**/dataSources.ids
     24 .idea/**/dataSources.local.xml
     25 .idea/**/sqlDataSources.xml
     26 .idea/**/dynamic.xml
     27 .idea/**/uiDesigner.xml
     28 .idea/**/dbnavigator.xml
     29 
     30 # Gradle
     31 .idea/**/gradle.xml
     32 .idea/**/libraries
     33 
     34 # Gradle and Maven with auto-import
     35 # When using Gradle or Maven with auto-import, you should exclude module files,
     36 # since they will be recreated, and may cause churn.  Uncomment if using
     37 # auto-import.
     38 # .idea/artifacts
     39 # .idea/compiler.xml
     40 # .idea/jarRepositories.xml
     41 # .idea/modules.xml
     42 # .idea/*.iml
     43 # .idea/modules
     44 # *.iml
     45 # *.ipr
     46 
     47 # CMake
     48 cmake-build-*/
     49 
     50 # Mongo Explorer plugin
     51 .idea/**/mongoSettings.xml
     52 
     53 # File-based project format
     54 *.iws
     55 
     56 # IntelliJ
     57 out/
     58 
     59 # mpeltonen/sbt-idea plugin
     60 .idea_modules/
     61 
     62 # JIRA plugin
     63 atlassian-ide-plugin.xml
     64 
     65 # Cursive Clojure plugin
     66 .idea/replstate.xml
     67 
     68 # SonarLint plugin
     69 .idea/sonarlint/
     70 
     71 # Crashlytics plugin (for Android Studio and IntelliJ)
     72 com_crashlytics_export_strings.xml
     73 crashlytics.properties
     74 crashlytics-build.properties
     75 fabric.properties
     76 
     77 # Editor-based Rest Client
     78 .idea/httpRequests
     79 
     80 # Android studio 3.1+ serialized cache file
     81 .idea/caches/build_file_checksums.ser
     82 
     83 ### GoLand Patch ###
     84 # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
     85 
     86 # *.iml
     87 # modules.xml
     88 # .idea/misc.xml
     89 # *.ipr
     90 
     91 # Sonarlint plugin
     92 # https://plugins.jetbrains.com/plugin/7973-sonarlint
     93 .idea/**/sonarlint/
     94 
     95 # SonarQube Plugin
     96 # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
     97 .idea/**/sonarIssues.xml
     98 
     99 # Markdown Navigator plugin
    100 # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
    101 .idea/**/markdown-navigator.xml
    102 .idea/**/markdown-navigator-enh.xml
    103 .idea/**/markdown-navigator/
    104 
    105 # Cache file creation bug
    106 # See https://youtrack.jetbrains.com/issue/JBR-2257
    107 .idea/$CACHE_FILE$
    108 
    109 # CodeStream plugin
    110 # https://plugins.jetbrains.com/plugin/12206-codestream
    111 .idea/codestream.xml
    112 
    113 # Azure Toolkit for IntelliJ plugin
    114 # https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij
    115 .idea/**/azureSettings.xml
    116 
    117 ### Linux ###
    118 *~
    119 
    120 # temporary files which can be created if a process still has a handle open of a deleted file
    121 .fuse_hidden*
    122 
    123 # KDE directory preferences
    124 .directory
    125 
    126 # Linux trash folder which might appear on any partition or disk
    127 .Trash-*
    128 
    129 # .nfs files are created when an open file is removed but is still being accessed
    130 .nfs*
    131 
    132 ### macOS ###
    133 # General
    134 .DS_Store
    135 .AppleDouble
    136 .LSOverride
    137 
    138 # Icon must end with two \r
    139 Icon
    140 
    141 # Thumbnails
    142 ._*
    143 
    144 # Files that might appear in the root of a volume
    145 .DocumentRevisions-V100
    146 .fseventsd
    147 .Spotlight-V100
    148 .TemporaryItems
    149 .Trashes
    150 .VolumeIcon.icns
    151 .com.apple.timemachine.donotpresent
    152 
    153 # Directories potentially created on remote AFP share
    154 .AppleDB
    155 .AppleDesktop
    156 Network Trash Folder
    157 Temporary Items
    158 .apdisk
    159 
    160 ### macOS Patch ###
    161 # iCloud generated files
    162 *.icloud
    163 
    164 ### VisualStudioCode ###
    165 .vscode/*
    166 !.vscode/settings.json
    167 !.vscode/tasks.json
    168 !.vscode/launch.json
    169 !.vscode/extensions.json
    170 !.vscode/*.code-snippets
    171 
    172 # Local History for Visual Studio Code
    173 .history/
    174 
    175 # Built Visual Studio Code Extensions
    176 *.vsix
    177 
    178 ### VisualStudioCode Patch ###
    179 # Ignore all local history of files
    180 .history
    181 .ionide
    182 
    183 # Support for Project snippet scope
    184 .vscode/*.code-snippets
    185 
    186 # Ignore code-workspaces
    187 *.code-workspace
    188 
    189 ### Windows ###
    190 # Windows thumbnail cache files
    191 Thumbs.db
    192 Thumbs.db:encryptable
    193 ehthumbs.db
    194 ehthumbs_vista.db
    195 
    196 # Dump file
    197 *.stackdump
    198 
    199 # Folder config file
    200 [Dd]esktop.ini
    201 
    202 # Recycle Bin used on file shares
    203 $RECYCLE.BIN/
    204 
    205 # Windows Installer files
    206 *.cab
    207 *.msi
    208 *.msix
    209 *.msm
    210 *.msp
    211 
    212 # Windows shortcuts
    213 *.lnk
    214 
    215 # End of https://www.toptal.com/developers/gitignore/api/linux,macos,windows,goland,visualstudiocode
    216 n