From 9267ac09fdb810e97aeb007cd32f8dc29546d0e0 Mon Sep 17 00:00:00 2001 From: Brendan Haines Date: Mon, 20 Sep 2021 22:23:30 -0600 Subject: [PATCH] add vscode settings.json --- .../BomGeneration/.vscode/settings.json | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 scripting/plugins/BomGeneration/.vscode/settings.json diff --git a/scripting/plugins/BomGeneration/.vscode/settings.json b/scripting/plugins/BomGeneration/.vscode/settings.json new file mode 100644 index 0000000..c684847 --- /dev/null +++ b/scripting/plugins/BomGeneration/.vscode/settings.json @@ -0,0 +1,24 @@ +{ + "editor.formatOnSave": true, + "python.pythonPath": "/usr/bin/python3", + "python.defaultInterpreterPath": "/usr/bin/python3", + "python.formatting.provider": "black", + "python.formatting.blackArgs": [ + "--line-length=120" + ], + "python.linting.flake8Enabled": true, + "python.linting.flake8Args": [ + "--max-line-length=120", + "--ignore=E402,F841,F401,E302,E305", + ], + "editor.rulers": [ + { + "column": 80, + "color": "#ff9900" + }, + { + "column": 120, + "color": "#ff0000" + }, + ], +} \ No newline at end of file