settings.json
1 { 2 "files.watcherExclude": { 3 "**/.venv*/**": true, 4 "**/.venvs*/**": true, 5 "**/venv*/**": true 6 }, 7 "mypy-type-checker.args": [ 8 "--config-file=config/mypy.ini" 9 ], 10 "python.testing.unittestEnabled": false, 11 "python.testing.pytestEnabled": true, 12 "python.testing.pytestArgs": [ 13 "--config-file=config/pytest.ini" 14 ], 15 "ruff.enable": true, 16 "ruff.format.args": [ 17 "--config=config/ruff.toml" 18 ], 19 "ruff.lint.args": [ 20 "--config=config/ruff.toml" 21 ], 22 "yaml.schemas": { 23 "https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs.yml" 24 }, 25 "yaml.customTags": [ 26 "!ENV scalar", 27 "!ENV sequence", 28 "!relative scalar", 29 "tag:yaml.org,2002:python/name:materialx.emoji.to_svg", 30 "tag:yaml.org,2002:python/name:materialx.emoji.twemoji", 31 "tag:yaml.org,2002:python/name:pymdownx.superfences.fence_code_format" 32 ] 33 }