From 6bbce95625a44c84727784aaf801e71b93f17ee4 Mon Sep 17 00:00:00 2001 From: Gui-FernandesBR Date: Tue, 31 Dec 2024 14:24:46 -0300 Subject: [PATCH] ENH: Add VS Code settings and update .gitignore --- .gitignore | 3 --- .vscode/settings.json | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index e1c331d..2fb6190 100644 --- a/.gitignore +++ b/.gitignore @@ -111,7 +111,4 @@ dmypy.json *.docx *.pdf -# VS Code -.vscode/ - databank/ \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..b820235 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,41 @@ +{ + "python.testing.pytestArgs": [ + "." + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true, + "cSpell.words": [ + "aftradius", + "crosssection", + "databranch", + "datapoint", + "datapoints", + "fincount", + "flightdata", + "flighttime", + "freeformfinset", + "geodeticmethod", + "groundhitvelocity", + "launchaltitude", + "launchlatitude", + "launchlongitude", + "launchrodvelocity", + "maxacceleration", + "maxaltitude", + "maxmach", + "maxvelocity", + "motormount", + "orhelper", + "rocketserializer", + "rootchord", + "shapeparameter", + "sweepangle", + "sweeplength", + "timetoapogee", + "tipchord", + "trapezoidfinset", + "tubefinset", + "windaverage", + "windturbulence" + ] +} \ No newline at end of file