python-code-style
仓库创建 2026年7月15日最近提交 7 天前SkillHot 收录 4 天前
这个 Skill 做什么
统一 Python 的代码风格、lint、格式化、命名和 docstring,帮你把 linters、formatter 和类型检查工具配置成团队可执行的规范。适合写新代码、做风格审查或建立项目标准时使用。特点是结合 Black、flake8、mypy 等现代工具和 settings.json 的项目配置给出落地建议。
▸ 展开 SKILL.md 英文原文
Python code style, linting, formatting, naming conventions, and documentation standards. Use when writing new code, reviewing style, configuring linters, writing docstrings, or establishing project standards.
0
Stars
0
Forks
10
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/Zolletta/zolletta-metaskill/main/python-code-style/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/Zolletta/zolletta-metaskill/main/python-code-style/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Python Code Style & Documentation Consistent code style and clear documentation make codebases maintainable and collaborative. This skill covers modern Python tooling, naming conventions, and documentation standards. > **Configuration source**: all project-level configuration (line length, target Python version, linting rules, type checking strictness, tool availability) is read from `settings.json` — specifically the `python.tools.*` objects (availability + effective config), `python.code_style` (rule toggles), and the top-level `acronyms` array. These are populated by `setup` from `pyproject.toml`. Do not read `pyproject.toml` directly; do not hardcode fallback defaults. See the parent
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有