diff --git a/README.md b/README.md index c395b2e..47868d9 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,16 @@ [![ghcr.io](https://github.com/growlf/toolbox/actions/workflows/docker-publish.yml/badge.svg)](https://github.com/growlf/toolbox/actions/workflows/docker-publish.yml) [![Docker Hub](https://github.com/growlf/toolbox/actions/workflows/docker-publish-dh.yml/badge.svg)](https://github.com/growlf/toolbox/actions/workflows/docker-publish-dh.yml) +## Development Environment Enhancements + +- Enabled format on save in VS Code settings to improve code consistency and reduce manual formatting efforts. + + The following setting was added to `.vscode/settings.json`: + ```json + { + "editor.formatOnSave": true + } + Containerized tools for on-the-go troubleshooting and developing in alien environments. By: Garth Johnson & others diff --git a/settings.json b/settings.json new file mode 100644 index 0000000..cac0e10 --- /dev/null +++ b/settings.json @@ -0,0 +1,3 @@ +{ + "editor.formatOnSave": true +} \ No newline at end of file