Commit a7d7f37f777fda86728ee4b99fa3b796cda7bd70

Authored by Thiago Franco de Moraes
1 parent fde18433
Exists in master

Updated gitignore

Showing 1 changed file with 292 additions and 42 deletions   Show diff stats
.gitignore
1   -invesalius/*.classpath
2   -invesalius/*.hg
3   -invesalius/*.log
4   -invesalius/*.project
5   -invesalius/*.pyc
6   -invesalius/*.swn
7   -invesalius/*.swo
8   -invesalius/*.swp
9   -invesalius/data/*.log
10   -invesalius/data/*.pyc
11   -invesalius/data/*.pyd
12   -invesalius/gui/*.log
13   -invesalius/gui/*.pyc
14   -invesalius/gui/widgets/*.log
15   -invesalius/gui/widgets/*.pyc
16   -invesalius/reader/*.log
17   -invesalius/reader/*.pyc
18   -
19   -.idea
20   -
21   -*.pyc
22   -*.swp
  1 +# Created by https://www.toptal.com/developers/gitignore/api/vim,python,intellij,visualstudiocode,direnv
  2 +# Edit at https://www.toptal.com/developers/gitignore?templates=vim,python,intellij,visualstudiocode,direnv
  3 +
  4 +### direnv ###
  5 +.direnv
  6 +.envrc
  7 +
  8 +### Intellij ###
  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/**/workspace.xml
  14 +.idea/**/tasks.xml
  15 +.idea/**/usage.statistics.xml
  16 +.idea/**/dictionaries
  17 +.idea/**/shelf
  18 +
  19 +# AWS User-specific
  20 +.idea/**/aws.xml
  21 +
  22 +# Generated files
  23 +.idea/**/contentModel.xml
  24 +
  25 +# Sensitive or high-churn files
  26 +.idea/**/dataSources/
  27 +.idea/**/dataSources.ids
  28 +.idea/**/dataSources.local.xml
  29 +.idea/**/sqlDataSources.xml
  30 +.idea/**/dynamic.xml
  31 +.idea/**/uiDesigner.xml
  32 +.idea/**/dbnavigator.xml
  33 +
  34 +# Gradle
  35 +.idea/**/gradle.xml
  36 +.idea/**/libraries
  37 +
  38 +# Gradle and Maven with auto-import
  39 +# When using Gradle or Maven with auto-import, you should exclude module files,
  40 +# since they will be recreated, and may cause churn. Uncomment if using
  41 +# auto-import.
  42 +# .idea/artifacts
  43 +# .idea/compiler.xml
  44 +# .idea/jarRepositories.xml
  45 +# .idea/modules.xml
  46 +# .idea/*.iml
  47 +# .idea/modules
  48 +# *.iml
  49 +# *.ipr
  50 +
  51 +# CMake
  52 +cmake-build-*/
  53 +
  54 +# Mongo Explorer plugin
  55 +.idea/**/mongoSettings.xml
  56 +
  57 +# File-based project format
  58 +*.iws
  59 +
  60 +# IntelliJ
  61 +out/
  62 +
  63 +# mpeltonen/sbt-idea plugin
  64 +.idea_modules/
  65 +
  66 +# JIRA plugin
  67 +atlassian-ide-plugin.xml
  68 +
  69 +# Cursive Clojure plugin
  70 +.idea/replstate.xml
  71 +
  72 +# Crashlytics plugin (for Android Studio and IntelliJ)
  73 +com_crashlytics_export_strings.xml
  74 +crashlytics.properties
  75 +crashlytics-build.properties
  76 +fabric.properties
  77 +
  78 +# Editor-based Rest Client
  79 +.idea/httpRequests
  80 +
  81 +# Android studio 3.1+ serialized cache file
  82 +.idea/caches/build_file_checksums.ser
  83 +
  84 +### Intellij Patch ###
  85 +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
  86 +
  87 +# *.iml
  88 +# modules.xml
  89 +# .idea/misc.xml
  90 +# *.ipr
  91 +
  92 +# Sonarlint plugin
  93 +# https://plugins.jetbrains.com/plugin/7973-sonarlint
  94 +.idea/**/sonarlint/
  95 +
  96 +# SonarQube Plugin
  97 +# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
  98 +.idea/**/sonarIssues.xml
  99 +
  100 +# Markdown Navigator plugin
  101 +# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
  102 +.idea/**/markdown-navigator.xml
  103 +.idea/**/markdown-navigator-enh.xml
  104 +.idea/**/markdown-navigator/
  105 +
  106 +# Cache file creation bug
  107 +# See https://youtrack.jetbrains.com/issue/JBR-2257
  108 +.idea/$CACHE_FILE$
  109 +
  110 +# CodeStream plugin
  111 +# https://plugins.jetbrains.com/plugin/12206-codestream
  112 +.idea/codestream.xml
  113 +
  114 +### Python ###
  115 +# Byte-compiled / optimized / DLL files
  116 +__pycache__/
  117 +*.py[cod]
  118 +*$py.class
  119 +
  120 +# C extensions
23 121 *.so
24   -tags
25   -*.c
26 122  
27   -.idea
28   -build
29   -*.patch
30   -*.tgz
  123 +# Distribution / packaging
  124 +.Python
  125 +build/
  126 +develop-eggs/
  127 +dist/
  128 +downloads/
  129 +eggs/
  130 +.eggs/
  131 +lib/
  132 +lib64/
  133 +parts/
  134 +sdist/
  135 +var/
  136 +wheels/
  137 +share/python-wheels/
  138 +*.egg-info/
  139 +.installed.cfg
  140 +*.egg
  141 +MANIFEST
31 142  
32   -*.pyd
33   -*.cpp
34   -*.diff
  143 +# PyInstaller
  144 +# Usually these files are written by a python script from a template
  145 +# before PyInstaller builds the exe, so as to inject date/other infos into it.
  146 +*.manifest
  147 +*.spec
35 148  
36   -*.directory
  149 +# Installer logs
  150 +pip-log.txt
  151 +pip-delete-this-directory.txt
37 152  
  153 +# Unit test / coverage reports
  154 +htmlcov/
  155 +.tox/
  156 +.nox/
  157 +.coverage
  158 +.coverage.*
  159 +.cache
  160 +nosetests.xml
  161 +coverage.xml
  162 +*.cover
  163 +*.py,cover
  164 +.hypothesis/
  165 +.pytest_cache/
  166 +cover/
38 167  
39   -# latex
40   -*.aux
41   -*.toc
42   -*.bbl
43   -*.blg
44   -*.fls
45   -*.fdb_latexmk
46   -*.synctex.gz
47   -*.out
  168 +# Translations
  169 +*.mo
  170 +*.pot
  171 +
  172 +# Django stuff:
48 173 *.log
49   -*.code-workspace
  174 +local_settings.py
  175 +db.sqlite3
  176 +db.sqlite3-journal
  177 +
  178 +# Flask stuff:
  179 +instance/
  180 +.webassets-cache
  181 +
  182 +# Scrapy stuff:
  183 +.scrapy
  184 +
  185 +# Sphinx documentation
  186 +docs/_build/
  187 +
  188 +# PyBuilder
  189 +.pybuilder/
  190 +target/
  191 +
  192 +# Jupyter Notebook
  193 +.ipynb_checkpoints
  194 +
  195 +# IPython
  196 +profile_default/
  197 +ipython_config.py
  198 +
  199 +# pyenv
  200 +# For a library or package, you might want to ignore these files since the code is
  201 +# intended to run in multiple environments; otherwise, check them in:
  202 +# .python-version
  203 +
  204 +# pipenv
  205 +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  206 +# However, in case of collaboration, if having platform-specific dependencies or dependencies
  207 +# having no cross-platform support, pipenv may install dependencies that don't work, or not
  208 +# install all needed dependencies.
  209 +#Pipfile.lock
  210 +
  211 +# PEP 582; used by e.g. github.com/David-OConnor/pyflow
  212 +__pypackages__/
  213 +
  214 +# Celery stuff
  215 +celerybeat-schedule
  216 +celerybeat.pid
  217 +
  218 +# SageMath parsed files
  219 +*.sage.py
  220 +
  221 +# Environments
  222 +.env
  223 +.venv
  224 +env/
  225 +venv/
  226 +ENV/
  227 +env.bak/
  228 +venv.bak/
  229 +myenv/
  230 +
  231 +# Spyder project settings
  232 +.spyderproject
  233 +.spyproject
  234 +
  235 +# Rope project settings
  236 +.ropeproject
  237 +
  238 +# mkdocs documentation
  239 +/site
  240 +
  241 +# mypy
  242 +.mypy_cache/
  243 +.dmypy.json
  244 +dmypy.json
  245 +
  246 +# Pyre type checker
  247 +.pyre/
  248 +
  249 +# pytype static type analyzer
  250 +.pytype/
  251 +
  252 +# Cython debug symbols
  253 +cython_debug/
  254 +
  255 +### Vim ###
  256 +# Swap
  257 +[._]*.s[a-v][a-z]
  258 +!*.svg # comment out if you don't need vector files
  259 +[._]*.sw[a-p]
  260 +[._]s[a-rt-v][a-z]
  261 +[._]ss[a-gi-z]
  262 +[._]sw[a-p]
  263 +
  264 +# Session
  265 +Session.vim
  266 +Sessionx.vim
  267 +
  268 +# Temporary
  269 +.netrwhist
  270 +*~
  271 +# Auto-generated tag files
  272 +tags
  273 +# Persistent undo
  274 +[._]*.un~
  275 +
  276 +### VisualStudioCode ###
50 277 .vscode/*
  278 +!.vscode/settings.json
  279 +!.vscode/tasks.json
  280 +!.vscode/launch.json
  281 +!.vscode/extensions.json
  282 +*.code-workspace
  283 +
  284 +# Local History for Visual Studio Code
  285 +.history/
  286 +
  287 +### VisualStudioCode Patch ###
  288 +# Ignore all local history of files
  289 +.history
  290 +.ionide
  291 +
  292 +# End of https://www.toptal.com/developers/gitignore/api/vim,python,intellij,visualstudiocode,direnv
  293 +
  294 +### Cython generated files ###
  295 +*.c
  296 +*.cpp
  297 +
  298 +### Patches and diffs ###
  299 +*.patch
  300 +*.diff
... ...