Skip to content
Snippets Groups Projects
Commit 45c80905 authored by ezsh's avatar ezsh
Browse files

Remove VSCode tasks file as its content varies from system to system

parent 2edd19a3
No related branches found
No related tags found
No related merge requests found
...@@ -16,76 +16,6 @@ Sessionx.vim ...@@ -16,76 +16,6 @@ Sessionx.vim
tags tags
[._]*.un~ [._]*.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 # celery beat schedule file
celerybeat-schedule celerybeat-schedule
...@@ -112,6 +42,7 @@ yarn.lock ...@@ -112,6 +42,7 @@ yarn.lock
# Visual Studio Code # Visual Studio Code
.vscode/settings.json .vscode/settings.json
.vscode/tasks.json
*.code-workspace *.code-workspace
# WebStorm # WebStorm
......
{
// 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": [],
}
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment