Skip to content

Latest commit

 

History

History
20 lines (18 loc) · 481 Bytes

README.md

File metadata and controls

20 lines (18 loc) · 481 Bytes

genai_4_dps_helper

Common functions for the GenAI 4 DPS Course

VS Code settings.json for ruff config

{
    "notebook.formatOnSave.enabled": true,
    "notebook.codeActionsOnSave": {
        "notebook.source.organizeImports": "explicit"
    },
    "[python]": {
        "editor.formatOnSave": true,
        "editor.defaultFormatter": "charliermarsh.ruff",
        "editor.codeActionsOnSave": {
            "source.organizeImports": "explicit"
        }
    }
  }