From ed579a306f774bfcf103e6f3f6c3eb76834a56b4 Mon Sep 17 00:00:00 2001 From: Tai Sakuma Date: Fri, 3 May 2024 19:41:09 -0400 Subject: [PATCH] Add vscode settings.json --- .vscode/settings.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..df4503d --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,20 @@ +{ + "[markdown]": { + "editor.rulers": [80] + }, + "[python]": { + "editor.rulers": [89] + }, + "prettier.printWidth": 79, + "rewrap.wrappingColumn": 79, + "python.testing.pytestArgs": ["tests"], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true, + "isort.check": true, + "markdownlint.config": { + "MD033": false, + "MD036": false, + "MD041": false + }, + "cSpell.words": ["funcs"] +}