tpls

Extendable, Fast Template Engine for Go
git clone git://git.lair.cx/tpls
Log | Files | Refs | README | LICENSE

.gitignore (3731B)


      1 # Created by https://www.toptal.com/developers/gitignore/api/intellij+all,macos,windows,linux,visualstudiocode
      2 # Edit at https://www.toptal.com/developers/gitignore?templates=intellij+all,macos,windows,linux,visualstudiocode
      3 
      4 ### Intellij+all ###
      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 ### Intellij+all Patch ###
     84 # Ignores the whole .idea folder and all .iml files
     85 # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
     86 
     87 .idea/*
     88 
     89 # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023
     90 
     91 *.iml
     92 modules.xml
     93 .idea/misc.xml
     94 *.ipr
     95 
     96 # Sonarlint plugin
     97 .idea/sonarlint
     98 
     99 ### Linux ###
    100 *~
    101 
    102 # temporary files which can be created if a process still has a handle open of a deleted file
    103 .fuse_hidden*
    104 
    105 # KDE directory preferences
    106 .directory
    107 
    108 # Linux trash folder which might appear on any partition or disk
    109 .Trash-*
    110 
    111 # .nfs files are created when an open file is removed but is still being accessed
    112 .nfs*
    113 
    114 ### macOS ###
    115 # General
    116 .DS_Store
    117 .AppleDouble
    118 .LSOverride
    119 
    120 # Icon must end with two \r
    121 Icon
    122 
    123 
    124 # Thumbnails
    125 ._*
    126 
    127 # Files that might appear in the root of a volume
    128 .DocumentRevisions-V100
    129 .fseventsd
    130 .Spotlight-V100
    131 .TemporaryItems
    132 .Trashes
    133 .VolumeIcon.icns
    134 .com.apple.timemachine.donotpresent
    135 
    136 # Directories potentially created on remote AFP share
    137 .AppleDB
    138 .AppleDesktop
    139 Network Trash Folder
    140 Temporary Items
    141 .apdisk
    142 
    143 ### VisualStudioCode ###
    144 .vscode/*
    145 !.vscode/settings.json
    146 !.vscode/tasks.json
    147 !.vscode/launch.json
    148 !.vscode/extensions.json
    149 !.vscode/*.code-snippets
    150 
    151 # Local History for Visual Studio Code
    152 .history/
    153 
    154 # Built Visual Studio Code Extensions
    155 *.vsix
    156 
    157 ### VisualStudioCode Patch ###
    158 # Ignore all local history of files
    159 .history
    160 .ionide
    161 
    162 # Support for Project snippet scope
    163 
    164 ### Windows ###
    165 # Windows thumbnail cache files
    166 Thumbs.db
    167 Thumbs.db:encryptable
    168 ehthumbs.db
    169 ehthumbs_vista.db
    170 
    171 # Dump file
    172 *.stackdump
    173 
    174 # Folder config file
    175 [Dd]esktop.ini
    176 
    177 # Recycle Bin used on file shares
    178 $RECYCLE.BIN/
    179 
    180 # Windows Installer files
    181 *.cab
    182 *.msi
    183 *.msix
    184 *.msm
    185 *.msp
    186 
    187 # Windows shortcuts
    188 *.lnk
    189 
    190 # End of https://www.toptal.com/developers/gitignore/api/intellij+all,macos,windows,linux,visualstudiocode