See the README for usages and details. A breaking changes here too: * run.py is gone, we now handle that kind of thing with docker * The token is out of the config and is now an ENVAR (ideally using a .env) * `.json` files are now in a .matchy/ subdirectory, as this makes it a lot easier for the container to safely read Bonus: * fix a score_factors.setdefault call causing issues * Reformat some of the readme
12 lines
No EOL
303 B
JSON
12 lines
No EOL
303 B
JSON
{
|
|
"flake8.args": [
|
|
"--max-line-length=120"
|
|
],
|
|
"python.testing.pytestArgs": [
|
|
"."
|
|
],
|
|
"python.testing.unittestEnabled": false,
|
|
"python.testing.pytestEnabled": true,
|
|
"autopep8.interpreter": [".venv/bin/python"],
|
|
"python.envFile": "${workspaceFolder}/.env",
|
|
} |