commit d42b7720921ea0b2e9c0213387465bd8778edc28 Author: Mark Date: Thu Oct 20 11:01:50 2022 -0700 Added metafiles diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..5aa417c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,12 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +[*] +indent_style = tab +indent_size = 4 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = false \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d75edea --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +venv +__pycache__ \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100755 index 0000000..cc4be24 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,8 @@ +{ + "cSpell.words": [ + "freevar", + "pyparsing", + "subvar" + ], + "python.analysis.typeCheckingMode": "basic" +} \ No newline at end of file