From 24aa1c4aff69a319ec368f784c1c6ae5aa459727 Mon Sep 17 00:00:00 2001 From: Markus Scheidgen <markus.scheidgen@gmail.com> Date: Wed, 21 Aug 2019 14:53:39 +0200 Subject: [PATCH] Remove .vscode files. --- .gitignore | 1 + .vscode/.gitignore | 3 - .vscode/launch.json | 195 ------------------------------------------ .vscode/settings.json | 32 ------- 4 files changed, 1 insertion(+), 230 deletions(-) delete mode 100644 .vscode/.gitignore delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 5fd8ac473c..f7f2cd8e71 100644 --- a/.gitignore +++ b/.gitignore @@ -15,4 +15,5 @@ local/ target/ *.swp *.vscode +vscode/ nomad.yaml diff --git a/.vscode/.gitignore b/.vscode/.gitignore deleted file mode 100644 index 3f92a7033a..0000000000 --- a/.vscode/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -.ropeproject/ -*.sql -launch.json \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 3b2e78faaa..0000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,195 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - - { - "type": "chrome", - "request": "launch", - "name": "Launch Chrome against localhost", - "url": "http://localhost:3000", - "webRoot": "${workspaceFolder}/gui" - }, - { - "name": "Python: API Flask (0.11.x or later)", - "type": "python", - "request": "launch", - "module": "flask", - "env": { - "FLASK_APP": "nomad/api.py" - }, - "args": [ - "run", - "--port", "8000", - "--no-debugger", - "--no-reload" - ] - }, - { - "name": "Photoemission Parser", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}/dependencies/parsers/photoemission", - "program": "${workspaceFolder}/.pyenv/bin/python", - "args": [ - "-m", "photoemissionparser", "test.json" - ] - }, - { - "name": "Python: some test", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_cli.py::TestClient::test_mirror" - ] - }, - { - "name": "Python: crystal normalizer test", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_normalizing.py::test_normalizer[parsers/crystal-tests/data/parsers/crystal/si.out]" - ] - }, - { - "name": "Python: cp2k normalizer test", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_normalizing.py::test_normalizer[parsers/cp2k-tests/data/parsers/cp2k/si_bulk8.out]" - ] - }, - { - "name": "Python: cpmd normalizer test", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_normalizing.py::test_normalizer[parsers/cpmd-tests/data/parsers/cpmd/geo_output.out]" - ] - }, - { - "name": "Python: wien2k normalizer test", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_normalizing.py::test_normalizer[parsers/wien2k-tests/data/parsers/wien2k/AlN/AlN_ZB.scf]" - ] - }, - { - "name": "Python: gaussian normalizer test", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_normalizing.py::test_normalizer[parsers/gaussian-tests/data/parsers/gaussian/Al.out]" - ] - }, - { - "name": "Python: aniline gaussian normalizer test", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_normalizing.py::test_normalizer[parsers/gaussian-tests/data/parsers/gaussian/al-1.out]" - ] - }, - { - "name": "Python: test_parsing match test", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_parsing.py::test_match" - ] - }, - { - "name": "Python: nwchem normalizer test h2o sp test", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_normalizing.py::test_normalizer[parsers/nwchem-tests/data/parsers/nwchem/sp_output.out]" - ] - }, - { - "name": "Python: Vasp XML test", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_normalizing.py::test_normalizer[parsers/vasp-tests/data/parsers/vasp/vasp.xml]" - ] - }, - { - "name": "Quantum Espresso Normalizer", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_normalizing.py::test_normalizer[parsers/quantumespresso-tests/data/parsers/quantum-espresso/W.out]" - ] - }, - { - "name": "Abinit Normalizer", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_normalizing.py::test_normalizer[parsers/abinit-tests/data/parsers/abinit/Fe.out]" - ] - }, - { - "name": "Castep Normalizer", - "type": "python", - "request": "launch", - "cwd": "${workspaceFolder}", - "program": "${workspaceFolder}/.pyenv/bin/pytest", - "args": [ - "-sv", "tests/test_normalizing.py::test_normalizer[parsers/castep-tests/data/parsers/castep/BC2N-Pmm2-Raman.castep]" - ] - }, - { - "name": "Python: Skeleton", - "type": "python", - "request": "launch", - "args": ["setup.py"], - "cwd": "${workspaceFolder}", - "program": "dependencies/parsers/skeleton/skeletonparser/__main__.py" - }, - { - "name": "Python: Current File", - "type": "python", - "request": "launch", - "program": "${file}" - }, - { - "name": "Python: Attach", - "type": "python", - "request": "attach", - "localRoot": "${workspaceFolder}", - "remoteRoot": "${workspaceFolder}", - "port": 3000, - "secret": "my_secret", - "host": "localhost" - } - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index e1b79c3bb1..0000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "python.venvPath": "${workspaceFolder}/.pyenv", - "python.pythonPath": "${workspaceFolder}/.pyenv/bin/python", - "git.ignoreLimitWarning": true, - "editor.rulers": [90], - "editor.renderWhitespace": "all", - "editor.tabSize": 4, - "[javascript]": { - "editor.tabSize": 2 - }, - "files.trimTrailingWhitespace": true, - "git.enableSmartCommit": true, - "eslint.autoFixOnSave": true, - "python.linting.pylintArgs": [ - "--load-plugins=pylint_mongoengine", - ], - "python.linting.pep8Path": "pycodestyle", - "python.linting.pep8Enabled": true, - "python.linting.pep8Args": ["--ignore=E501,E701"], - "python.linting.mypyEnabled": true, - "python.linting.mypyArgs": [ - "--ignore-missing-imports", - "--follow-imports=silent", - "--no-strict-optional" - ], - "workbench.colorCustomizations": { - "editorError.foreground": "#FF2222", - "editorOverviewRuler.errorForeground": "#FF2222", - "editorWarning.foreground": "#FF5500", - "editorOverviewRuler.warningForeground": "#FF5500" - } -} \ No newline at end of file -- GitLab