From 119b047976f71540bfdf8245bd1db43ce6aefc8f Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Fri, 31 May 2024 21:09:54 +0000 Subject: [PATCH] add devcontainer config --- .devcontainer/devcontainer.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..eb9a630 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,8 @@ +{ + "name": "Python 3", + "image": "mcr.microsoft.com/devcontainers/python", + "features": { + "ghcr.io/devcontainers-contrib/features/pre-commit:2": {} + }, + "postCreateCommand": "pre-commit install" +}