Guest User

Global gitignore

a guest
Jan 24th, 2022
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.29 KB | None | 0 0
  1. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  2. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  3.  
  4. # User-specific stuff
  5. .idea/**/workspace.xml
  6. .idea/**/tasks.xml
  7. .idea/**/usage.statistics.xml
  8. .idea/**/dictionaries
  9. .idea/**/shelf
  10.  
  11. # AWS User-specific
  12. .idea/**/aws.xml
  13.  
  14. # Generated files
  15. .idea/**/contentModel.xml
  16.  
  17. # Sensitive or high-churn files
  18. .idea/**/dataSources/
  19. .idea/**/dataSources.ids
  20. .idea/**/dataSources.local.xml
  21. .idea/**/sqlDataSources.xml
  22. .idea/**/dynamic.xml
  23. .idea/**/uiDesigner.xml
  24. .idea/**/dbnavigator.xml
  25.  
  26. # Gradle
  27. .idea/**/gradle.xml
  28. .idea/**/libraries
  29.  
  30. # Gradle and Maven with auto-import
  31. # When using Gradle or Maven with auto-import, you should exclude module files,
  32. # since they will be recreated, and may cause churn. Uncomment if using
  33. # auto-import.
  34. # .idea/artifacts
  35. # .idea/compiler.xml
  36. # .idea/jarRepositories.xml
  37. # .idea/modules.xml
  38. # .idea/*.iml
  39. # .idea/modules
  40. # *.iml
  41. # *.ipr
  42.  
  43. # CMake
  44. cmake-build-*/
  45.  
  46. # Mongo Explorer plugin
  47. .idea/**/mongoSettings.xml
  48.  
  49. # File-based project format
  50. *.iws
  51.  
  52. # IntelliJ
  53. out/
  54.  
  55. # mpeltonen/sbt-idea plugin
  56. .idea_modules/
  57.  
  58. # JIRA plugin
  59. atlassian-ide-plugin.xml
  60.  
  61. # Cursive Clojure plugin
  62. .idea/replstate.xml
  63.  
  64. # SonarLint plugin
  65. .idea/sonarlint/
  66.  
  67. # Crashlytics plugin (for Android Studio and IntelliJ)
  68. com_crashlytics_export_strings.xml
  69. crashlytics.properties
  70. crashlytics-build.properties
  71. fabric.properties
  72.  
  73. # Editor-based Rest Client
  74. .idea/httpRequests
  75.  
  76. # Android studio 3.1+ serialized cache file
  77. .idea/caches/build_file_checksums.ser
  78.  
  79. # Swap
  80. [._]*.s[a-v][a-z]
  81. !*.svg # comment out if you don't need vector files
  82. [._]*.sw[a-p]
  83. [._]s[a-rt-v][a-z]
  84. [._]ss[a-gi-z]
  85. [._]sw[a-p]
  86.  
  87. # Session
  88. Session.vim
  89. Sessionx.vim
  90.  
  91. # Temporary
  92. .netrwhist
  93. *~
  94. # Auto-generated tag files
  95. tags
  96. # Persistent undo
  97. [._]*.un~
  98.  
  99. .vscode/*
  100. !.vscode/settings.json
  101. !.vscode/tasks.json
  102. !.vscode/launch.json
  103. !.vscode/extensions.json
  104. !.vscode/*.code-snippets
  105.  
  106. # Local History for Visual Studio Code
  107. .history/
  108.  
  109. # Built Visual Studio Code Extensions
  110. *.vsix
  111.  
  112. # General
  113. .DS_Store
  114. .AppleDouble
  115. .LSOverride
  116.  
  117. # Icon must end with two \r
  118. Icon
  119.  
  120.  
  121. # Thumbnails
  122. ._*
  123.  
  124. # Files that might appear in the root of a volume
  125. .DocumentRevisions-V100
  126. .fseventsd
  127. .Spotlight-V100
  128. .TemporaryItems
  129. .Trashes
  130. .VolumeIcon.icns
  131. .com.apple.timemachine.donotpresent
  132.  
  133. # Directories potentially created on remote AFP share
  134. .AppleDB
  135. .AppleDesktop
  136. Network Trash Folder
  137. Temporary Items
  138. .apdisk
  139.  
  140. # Byte-compiled / optimized / DLL files
  141. __pycache__/
  142. *.py[cod]
  143. *$py.class
  144.  
  145. # C extensions
  146. *.so
  147.  
  148. # Distribution / packaging
  149. .Python
  150. build/
  151. develop-eggs/
  152. dist/
  153. downloads/
  154. eggs/
  155. .eggs/
  156. lib/
  157. lib64/
  158. parts/
  159. sdist/
  160. var/
  161. wheels/
  162. share/python-wheels/
  163. *.egg-info/
  164. .installed.cfg
  165. *.egg
  166. MANIFEST
  167.  
  168. # PyInstaller
  169. # Usually these files are written by a python script from a template
  170. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  171. *.manifest
  172. *.spec
  173.  
  174. # Installer logs
  175. pip-log.txt
  176. pip-delete-this-directory.txt
  177.  
  178. # Unit test / coverage reports
  179. htmlcov/
  180. .tox/
  181. .nox/
  182. .coverage
  183. .coverage.*
  184. .cache
  185. nosetests.xml
  186. coverage.xml
  187. *.cover
  188. *.py,cover
  189. .hypothesis/
  190. .pytest_cache/
  191. cover/
  192.  
  193. # Translations
  194. *.mo
  195. *.pot
  196.  
  197. # Django stuff:
  198. *.log
  199. local_settings.py
  200. db.sqlite3
  201. db.sqlite3-journal
  202.  
  203. # Flask stuff:
  204. instance/
  205. .webassets-cache
  206.  
  207. # Scrapy stuff:
  208. .scrapy
  209.  
  210. # Sphinx documentation
  211. docs/_build/
  212.  
  213. # PyBuilder
  214. .pybuilder/
  215. target/
  216.  
  217. # Jupyter Notebook
  218. .ipynb_checkpoints
  219.  
  220. # IPython
  221. profile_default/
  222. ipython_config.py
  223.  
  224. # pyenv
  225. # For a library or package, you might want to ignore these files since the code is
  226. # intended to run in multiple environments; otherwise, check them in:
  227. # .python-version
  228.  
  229. # pipenv
  230. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  231. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  232. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  233. # install all needed dependencies.
  234. #Pipfile.lock
  235.  
  236. # poetry
  237. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  238. # This is especially recommended for binary packages to ensure reproducibility, and is more
  239. # commonly ignored for libraries.
  240. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  241. #poetry.lock
  242.  
  243. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  244. __pypackages__/
  245.  
  246. # Celery stuff
  247. celerybeat-schedule
  248. celerybeat.pid
  249.  
  250. # SageMath parsed files
  251. *.sage.py
  252.  
  253. # Environments
  254. .env
  255. .venv
  256. env/
  257. venv/
  258. ENV/
  259. env.bak/
  260. venv.bak/
  261.  
  262. # Spyder project settings
  263. .spyderproject
  264. .spyproject
  265.  
  266. # Rope project settings
  267. .ropeproject
  268.  
  269. # mkdocs documentation
  270. /site
  271.  
  272. # mypy
  273. .mypy_cache/
  274. .dmypy.json
  275. dmypy.json
  276.  
  277. # Pyre type checker
  278. .pyre/
  279.  
  280. # pytype static type analyzer
  281. .pytype/
  282.  
  283. # Cython debug symbols
  284. cython_debug/
  285.  
  286. # PyCharm
  287. # JetBrains specific template is maintainted in a separate JetBrains.gitignore that can
  288. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  289. # and can be added to the global gitignore or merged into this file. For a more nuclear
  290. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  291. #.idea/
  292.  
  293. # Local .terraform directories
  294. **/.terraform/*
  295.  
  296. # .tfstate files
  297. *.tfstate
  298. *.tfstate.*
  299.  
  300. # Crash log files
  301. crash.log
  302. crash.*.log
  303.  
  304. # Exclude all .tfvars files, which are likely to contain sentitive data, such as
  305. # password, private keys, and other secrets. These should not be part of version
  306. # control as they are data points which are potentially sensitive and subject
  307. # to change depending on the environment.
  308. #
  309. *.tfvars
  310.  
  311. # Ignore override files as they are usually used to override resources locally and so
  312. # are not checked in
  313. override.tf
  314. override.tf.json
  315. *_override.tf
  316. *_override.tf.json
  317.  
  318. # Include override files you do wish to add to version control using negated pattern
  319. #
  320. # !example_override.tf
  321.  
  322. # Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
  323. # example: *tfplan*
  324.  
  325. # Ignore CLI configuration files
  326. .terraformrc
  327. terraform.rc
  328.  
  329.  
Add Comment
Please, Sign In to add comment