使用Pylint規範你的Python代碼

Pylint是一個Python代碼風格的檢查工具,功能上相似於pychecker,默認用PEP8做爲代碼風格標準,它所提供的功能包括:檢查代碼行的長度,檢查變量命名是否符合規範,檢查聲明的接口是否被真正的實現等等,詳細信息參考:http://docs.pylint.org/。linux

安裝:windows

sudo apt-get install pylint ? #Ubuntu工具

pip install pyint ? #windowsui

更多安裝方式能夠查看:http://www.pylint.org/#install編碼

使用:spa

pylint [options] module_or_package接口

好比運行:pylint setup.py ?,輸出:ip

No config file found, using default configurationget

************* Module setupstring

C: 1,0: Missing docstring

C: 6,0: Invalid name "here" for type constant (should match (([A-Z_][A-Z0-9_]*)|(__.*__))$)

C: 10,0: Invalid name "requires" for type constant (should match (([A-Z_][A-Z0-9_]*)|(__.*__))$)

C: 31,0: Comma not followed by a space

if sys.version_info[:3] < (2,5,0):

這部分是源代碼的分析結果,其格式是: 第一行都是這樣子: ****************** Module 模塊的名稱 接下來的幾行就是message,其格式爲:

MESSAGE TYPE: LINE NUM:[OBJECT:] MESSAGE MESSAGE有以下幾種類型:

  • (C)Convertion,指違反了編碼風格標準
  • (R) Refactor,指寫得很是糟糕的代碼。
  • (W) Warn,某些 Python 特定的問題。
  • (E) Error,極可能是代碼中的錯誤。
  • (F) Fatal,阻止 Pylint 進一步運行的錯誤。
  • 若是隻看消息而不想看後面很長一段報告的話,使用使用參數:

pylint -r n 第二部分就是一些統計報告,這部分能夠不關注。

相關文章
相關標籤/搜索