diff --git a/.gitignore b/.gitignore index 3a746ae..4928d66 100644 --- a/.gitignore +++ b/.gitignore @@ -13,4 +13,3 @@ data_rework/ .env weboob .htpasswd -.vscode \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..6e1257b --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "mtxr.sqltools", + "mtxr.sqltools-driver-sqlite" + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..168cfae --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,15 @@ +{ + "cSpell.words": [ + "Weboob", + "flatisfy" + ], + "sqltools.useNodeRuntime": true, + "sqltools.connections": [ + { + "previewLimit": 50, + "driver": "SQLite", + "name": "flatisfy", + "database": "${workspaceFolder:flatisfy}/data/flatisfy.db" + } + ] +}