diff --git a/.gitignore b/.gitignore index 36b4d00deeb5a33fc7831b5c2ee11b30581692de..0c1f7be62c2a8cb7e78adcb57afd699e9d56e9e5 100644 --- a/.gitignore +++ b/.gitignore @@ -16,76 +16,6 @@ Sessionx.vim tags [._]*.un~ -# C extensions -*.so - -# Distribution / packaging -.Python -env/ -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -*.egg-info/ -.installed.cfg -*.egg -bin/* - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*,cover -.hypothesis/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -target/ - -# IPython Notebook -.ipynb_checkpoints - -# pyenv -.python-version - # celery beat schedule file celerybeat-schedule @@ -112,6 +42,7 @@ yarn.lock # Visual Studio Code .vscode/settings.json +.vscode/tasks.json *.code-workspace # WebStorm diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 0a3859ac54632db02246f16bd4b628faeea26e1c..0000000000000000000000000000000000000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - // See https://go.microsoft.com/fwlink/?LinkId=733558 - // for the documentation about the tasks.json format - "version": "2.0.0", - "command": "Test build", - "tasks": [ - { - "label": "Compile", - "type": "shell", - "command": "./compile.sh", - "windows": { - "command": ".\\compile.bat" - }, - "group": "build", - "presentation": { - "reveal": "always", - "panel": "new" - }, - "problemMatcher": [] - }, - { - "label": "Run in Chrome", - "type": "process", - "command": "chrome.exe", - "windows": { - "command": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe" - }, - "group": "test", - "args": [ - "${workspaceRoot}/bin/FC_pregmod.html", "--incognito" - ], - "problemMatcher": [], - } - ] -}