You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .claude/skills/dataverse-sdk-dev/SKILL.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,4 +26,4 @@ This skill provides guidance for developers working on the PowerPlatform Dataver
26
26
8.**No noqa comments** - Do not add `# noqa: BLE001` or similar linter suppression comments
27
27
9.**Document public APIs** - Add Sphinx-style docstrings with examples for public methods
28
28
10.**Define __all__ in module files, not __init__.py** - Use `__all__` to control exports in the actual module file (e.g., errors.py), not in `__init__.py`.
29
-
11.**black formatting** - Use `black` for codeformatting
29
+
11.**Run black before committing** - Always run `python -m black <changed files>` before committing. CI will reject unformatted code. Config is in `pyproject.toml` under `[tool.black]`. And follow black formatting in general when coding.
Copy file name to clipboardExpand all lines: src/PowerPlatform/Dataverse/claude_skill/dataverse-sdk-dev/SKILL.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,4 +26,4 @@ This skill provides guidance for developers working on the PowerPlatform Dataver
26
26
8.**No noqa comments** - Do not add `# noqa: BLE001` or similar linter suppression comments
27
27
9.**Document public APIs** - Add Sphinx-style docstrings with examples for public methods
28
28
10.**Define __all__ in module files, not __init__.py** - Use `__all__` to control exports in the actual module file (e.g., errors.py), not in `__init__.py`.
29
-
11.**black formatting** - Use `black` for codeformatting
29
+
11.**Run black before committing** - Always run `python -m black <changed files>` before committing. CI will reject unformatted code. Config is in `pyproject.toml` under `[tool.black]`. And follow black formatting in general when coding.
0 commit comments