Files
playbook/docs/python/style_guide.md
T

620 B
Raw Blame History

Python 代码风格(Google Python Style Guide

本 Playbook 的 Python 代码风格以 Google Python Style Guide 为基线(基于 PEP 8):

项目约定(Project Conventions

  • 行宽:80(与 black/flake8/pylint 配置保持一致)
  • docstringGoogle 风格(与 .flake8docstring-convention = google 对齐)
  • import 顺序:使用 isortprofile = google

当既有代码与本约定冲突时,优先保持局部一致性,逐步迁移。