Skip to main content

CLASPLint

Python License PyPI

CLASP Stage 3.5 / PEP 2606 static analysis tool. Enforces naming, line, and comment conventions beyond PEP 8 — checks variables, dictionary keys, functions, classes, physical lines, comments, and log messages for standards compliance.


Features

  • Variable namesgroup1_group2 format, all lowercase, no abbreviations, type/boolean prefixes, ≤30 chars
  • Dictionary keys — PascalCase, full spelling, acronyms kept uppercase
  • Function & class names — snake_case for functions, PascalCase for classes, private methods _init_X_function_
  • Comment format — every physical code line requires # Capitalized sentence. comment (import/class/def exempt)
  • Log messages — pre-defined string variables (6 allowed names), proper try-except chain with as variable naming, exc_info=True on error/critical/fatal, raise with from clause
  • Try-Except blocks — no tuple catching, alphabetical exception ordering, Exception last, whitelist as variable names, bare raise prohibited, raise XxxError(message_error) from e required
  • Docstrings — File: field-based format; Class: ATTRIBUTES/PUBLIC/PRIVATE/USAGE/WARNING; Method: Sphinx :param/:type/:return/:rtype/:raise with summary→detail→directives structure
  • Encoding declaration — file header must contain # -*- coding: utf-8 -*-
  • Single-line comments — each # comment is a self-contained sentence; multi-line comment blocks are forbidden
  • Symbol-line exemption — pure-symbol lines (only non-letter characters) are exempt from comment requirements and must not carry comments
  • Comment quality — detects weak comments that merely restate code rather than explain intent
  • Comment language — all comments must be written in English
  • Log quality — log message variable names must follow group1_group2 format; log message content must be in Chinese
  • Docstring quality — file-level docstrings must follow CLASP field-based format (MODULE, TYPE, DESCRIPTION...); class docstrings require ATTRIBUTES/PUBLIC METHODS/PRIVATE METHODS/USAGE/WARNING sections; docstring text is checked for capitalization, punctuation, and abbreviations
  • Physical line length — every source line is limited to a fixed 128 characters including indentation
  • String construction — implicit adjacent string or f-string literals may not cross physical lines; use separate explicit += statements
  • Review hints — advisory suggestions to keep variable names as short as possible without ambiguity when they exceed 15 characters or contain multi-word groups; excluded from the violation total

Installation

pip install CLASPLint

Or from source:

git clone https://github.com/thedayofthedoctor/clasplint.git
cd clasplint
pip install -e .

Quick Start

# Check a single file
CLASPLint path/to/file.py

# Check all Python files in a directory (recursive)
CLASPLint src/

# Show only summary; all checks still run and checking time is not reduced
CLASPLint --quiet src/

# Filter by violation category
CLASPLint --category variable src/

Usage

usage: CLASPLint [-h] [--version] [--no-recursive] [--quiet] [-c CATEGORY] [paths ...]

positional arguments:
  paths                 Python files or directories to check (default: current directory)

options:
  --version             show version number and exit
  --no-recursive        do not recursively check subdirectories
  --quiet, -q           suppress individual violation output; show only summary;
                        all checks still run, so checking time is not reduced
  --category, -c {variable,dict_key,function,comment,log,docstring,tryexcept,lines}
                        only report violations of a specific category

Example Output

$ CLASPLint tests/test_violations.py

When violations exist:

=== Code Logging Annotation Standard Proposal (CLASP) Report ===

+-------------------------+
|     Total Reports     |
+-------------------------+

From 2026-07-06 02:00:00 to 2026-07-06 02:00:00, CLASPLint totally found 13 violation(s) in
1 of 1 file(s), as follows:

    COMMENT  :    5   violation(s)
    DICT_KEY :    3   violation(s)
    FUNCTION :    2   violation(s)
    VARIABLE :    3   violation(s)

+-------------------------+
|    Full Violations    |
+-------------------------+

[Comment Violations]:
  [1] tests/test_violations.py:8:
     Line 8 lacks a required preceding comment.
       Violation Content:
         badvar = 42
  [2] tests/test_violations.py:11:
     Comment must start with '# ' (hash, space).
       Violation Content:
         #Bad_Var
  ...

When clean:

=== Code Logging Annotation Standard Proposal (CLASP) Report ===

+-------------------------+
|     Total Reports     |
+-------------------------+

From 2026-07-06 02:00:00 to 2026-07-06 02:00:00, 0 violation(s) in 11 file(s).

CLASP Stage 3.5 / PEP 2606 Rules Summary

Category Rule
Variable group1_group2, one underscore, all lowercase, no abbreviations, ≤30 chars
Boolean is_ or has_ prefix (mandatory for bool-annotated and bool-literal variables)
Constant Lowercase group1_group2 format (ALL_CAPS prohibited)
Dict Key PascalCase, full spelling, acronyms uppercase (GPS, UTM, XML, etc.)
Class PascalCase
Function snake_case, specific verb, ≤30 chars
Method Public: short snake_case; Private: _init_X_function_ ≤30 chars
Comment Every physical line: # Capitalized sentence ending with period. (import/class/def exempt)
Control Flow Body first line must have a preceding comment (if/for/while)
Log Messages as pre-defined variables (6 allowed names), proper try-except chain, exc_info=True, fatal level
Docstring File: field-based format; Class: ATTRIBUTES/PUBLIC/PRIVATE/USAGE/WARNING; Method: Sphinx :param/:type/:return/:rtype/:raise
Try-Except No tuple catch, alphabetical exception order, Exception last, whitelist as names, raise XxxError(msg) from e pattern
Encoding # -*- coding: utf-8 -*- required at file top (line 1 or 2 after shebang)
Symbol Line Pure-symbol lines (no letters) are comment-exempt and must not carry comments
Multi-line Each comment must be a single self-contained line; blocks are forbidden
Weak Comment Comments must explain intent, not paraphrase conditions (no "Check if...")
Comment Lang All comments must be in English (ASCII only)
Log Lang Log messages must be in Chinese
Log Variable Log message variables limited to: message_info/debug/warning/error/critical/fatal
Lines Fixed 128-character physical lines plus cross-line implicit string concatenation; use explicit +=
Review Keep variable names as short as possible without ambiguity; advisory only, excluded from totals

Python Version Support

CLASPLint supports Python 3.8 through 3.14. The minimum version is 3.8 due to ast.Constant, ast.NamedExpr, and ast.get_docstring() usage.

License

GPL-3.0-only — Copyright (C) 2026 Matt Belfast Brown



CLASPLint(中文)

Python License PyPI

CLASP Stage 3.5 / PEP 2606 静态分析工具。在 PEP 8 之上强制执行命名、物理行与注释规范 —— 检查变量、字典键、函数、类、物理行、注释和日志消息是否符合标准。


功能特性

  • 变量名 —— group1_group2 两段下划线格式,全部小写,禁止缩写,支持类型/布尔前缀,≤30 字符
  • 字典键名 —— PascalCase 驼峰式,完整拼写,专有缩写保持大写
  • 函数与类名 —— 函数 snake_case,类 PascalCase,私有方法 _init_X_function_
  • 注释格式 —— 每条物理代码行前必须有 # 首字母大写英文句子并以句号结尾。(import/class/def 豁免)
  • 日志消息 —— 必须预定义为字符串变量(6种允许名称),完整 try-except 链条带 as 变量命名, 错误/严重/致命日志带 exc_info=True,raise 必须用 from 链接原始异常
  • 异常块 —— 禁止元组捕获,异常类型字母序排列,Exception 最后兜底,as 变量名须在白名单, 禁止裸 raise,必须 raise XxxError(message_error) from e
  • 文档字符串 —— 文件级:字段式格式;类级:ATTRIBUTES/PUBLIC/PRIVATE/USAGE/WARNING; 方法级:Sphinx :param/:type/:return/:rtype/:raise,概述→详述→指令三段式
  • 编码声明 —— 文件头必须包含 # -*- coding: utf-8 -*-
  • 单行注释 —— 每条 # 注释为独立单行句子;禁止多行注释块
  • 符号行豁免 —— 纯符号行(仅含非字母字符)免注释且不得带注释
  • 注释质量 —— 检测仅复述代码而非解释意图的弱注释
  • 注释语言 —— 所有注释必须使用英文
  • 日志语言 —— 日志消息必须使用中文;日志变量名须符合 group1_group2 格式
  • 文档字符串质量 —— 文件级 docstring 须符合 CLASP 字段式格式(MODULE/TYPE/DESCRIPTION...);类 docstring 须含 ATTRIBUTES/PUBLIC METHODS/PRIVATE METHODS/USAGE/WARNING 段;检查文本大小写、标点与缩写
  • 物理行长度 —— 每个源代码物理行固定最多 128 个字符,包含缩进
  • 字符串构造 —— 普通字符串或 f-string 不得通过跨物理行相邻字面量隐式拼接;应使用独立的 += 语句
  • Review 提示 —— 变量名在不产生歧义时应尽可能简短;超过 15 字符或包含多词拼接时提示,不计入违规总数

安装

pip install CLASPLint

或从源码安装:

git clone https://github.com/thedayofthedoctor/clasplint.git
cd clasplint
pip install -e .

快速开始

# 检查单个文件
CLASPLint path/to/file.py

# 递归检查目录下所有 Python 文件
CLASPLint src/

# 仅显示摘要;全部检查仍会执行,不会缩短检查时间
CLASPLint --quiet src/

# 按类别过滤
CLASPLint --category variable src/

命令行用法

usage: CLASPLint [-h] [--version] [--no-recursive] [--quiet] [-c CATEGORY] [paths ...]

位置参数:
  paths                 要检查的 Python 文件或目录(默认:当前目录)

可选参数:
  --version             显示版本号并退出
  --no-recursive        不递归检查子目录
  --quiet, -q           仅显示摘要并抑制逐条违规输出;全部检查仍会执行,
                        因此不会缩短检查时间
  --category, -c {variable,dict_key,function,comment,log,docstring,tryexcept,lines}
                        仅报告指定类别的违规

输出示例

$ CLASPLint tests/test_violations.py

发现违规时:

=== Code Logging Annotation Standard Proposal (CLASP) Report ===

+-------------------------+
|     Total Reports     |
+-------------------------+

From 2026-07-06 02:00:00 to 2026-07-06 02:00:00, CLASPLint totally found 13 violation(s) in
1 of 1 file(s), as follows:

    COMMENT  :    5   violation(s)
    DICT_KEY :    3   violation(s)
    FUNCTION :    2   violation(s)
    VARIABLE :    3   violation(s)

+-------------------------+
|    Full Violations    |
+-------------------------+

[Comment Violations]:
  [1] tests/test_violations.py:8:
     Line 8 lacks a required preceding comment.
       Violation Content:
         badvar = 42
  [2] tests/test_violations.py:11:
     Comment must start with '# ' (hash, space).
       Violation Content:
         #Bad_Var
  ...

无违规时:

=== Code Logging Annotation Standard Proposal (CLASP) Report ===

+-------------------------+
|     Total Reports     |
+-------------------------+

From 2026-07-06 02:00:00 to 2026-07-06 02:00:00, 0 violation(s) in 11 file(s).

CLASP Stage 3.5 / PEP 2606 规则速查

类别 规则
变量 group1_group2,有且仅有一个下划线,全部小写,禁止缩写,≤30 字符
布尔值 is_has_ 前缀(bool 注解和 bool 字面量赋值强制)
常量 小写 group1_group2 格式(禁止 ALL_CAPS)
字典键 PascalCase 驼峰式,完整拼写,专有缩写大写(GPS、UTM、XML 等)
类名 PascalCase
函数名 snake_case,使用具体动词,≤30 字符
方法 公共:简短 snake_case;私有:_init_X_function_ ≤30 字符
注释 每条物理行:# Capitalized sentence ending with period.(import/class/def 豁免)
控制流 分支/循环体首行必须拥有前置注释(if/for/while)
日志 消息预定义为变量(6种允许名称),完整 try-except 日志链,exc_info=True,fatal 等级
文档字符串 文件级:字段式格式;类级:ATTRIBUTES/PUBLIC/PRIVATE/USAGE/WARNING;方法级:Sphinx :param/:type/:return/:rtype/:raise
异常块 禁止元组捕获,异常字母序,Exception 最后,as 白名单变量,raise XxxError(msg) from e
编码声明 文件顶部须有 # -*- coding: utf-8 -*-(第1行或shebang后第2行)
符号行 纯符号行(无字母)免注释且禁止带注释
单行注释 每条注释为独立单行句子;禁止多行注释块
弱注释 注释须解释意图,不得仅复述代码(禁止 "Check if...")
注释语言 所有注释须使用英文(仅 ASCII 字符)
日志语言 日志消息须使用中文
日志变量 日志变量名限定为:message_info/debug/warning/error/critical/fatal
Lines 固定 128 字符物理行限制;禁止跨行隐式字符串拼接,跨行构造使用独立 += 语句
Review 变量名在不产生歧义时应尽可能简短;过长或多词拼接仅作建议提示,不计入违规总数

Python 版本支持

CLASPLint 支持 Python 3.8 至 3.14。最低版本为 3.8,原因在于使用了 ast.Constantast.NamedExprast.get_docstring()

许可证

GPL-3.0-only — Copyright (C) 2026 Matt Belfast Brown

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

clasplint-0.6.2.tar.gz (123.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

clasplint-0.6.2-cp314-none-any.whl (126.3 kB view details)

Uploaded CPython 3.14

clasplint-0.6.2-cp313-none-any.whl (126.5 kB view details)

Uploaded CPython 3.13

clasplint-0.6.2-cp312-none-any.whl (126.5 kB view details)

Uploaded CPython 3.12

clasplint-0.6.2-cp311-none-any.whl (126.5 kB view details)

Uploaded CPython 3.11

clasplint-0.6.2-cp310-none-any.whl (126.5 kB view details)

Uploaded CPython 3.10

clasplint-0.6.2-cp39-none-any.whl (126.5 kB view details)

Uploaded CPython 3.9

clasplint-0.6.2-cp38-none-any.whl (126.5 kB view details)

Uploaded CPython 3.8

File details

Details for the file clasplint-0.6.2.tar.gz.

File metadata

  • Download URL: clasplint-0.6.2.tar.gz
  • Upload date:
  • Size: 123.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for clasplint-0.6.2.tar.gz
Algorithm Hash digest
SHA256 82c5bc8610d5d224389182a73764d640ae23bbd3e2538ca182bc6cc1ac91cb49
MD5 ceba2ee5f2fd0e35e65451d58ee076a6
BLAKE2b-256 4865849b8a4a8d04f96c79958094a4b9a56eced14dbc3ba72e28d6bbea023377

See more details on using hashes here.

File details

Details for the file clasplint-0.6.2-cp314-none-any.whl.

File metadata

  • Download URL: clasplint-0.6.2-cp314-none-any.whl
  • Upload date:
  • Size: 126.3 kB
  • Tags: CPython 3.14
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for clasplint-0.6.2-cp314-none-any.whl
Algorithm Hash digest
SHA256 aa546ae3206d00ceaf31b4ec14d0dfea384254f4344867a6ec9fdfbc54693626
MD5 e8fa3642951578e94f8e41a1ab198e54
BLAKE2b-256 31cd9f032b07f8f09d6a1de97dc58446fa0865ff1a8213ce6b38e3bb840f16c8

See more details on using hashes here.

File details

Details for the file clasplint-0.6.2-cp313-none-any.whl.

File metadata

  • Download URL: clasplint-0.6.2-cp313-none-any.whl
  • Upload date:
  • Size: 126.5 kB
  • Tags: CPython 3.13
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for clasplint-0.6.2-cp313-none-any.whl
Algorithm Hash digest
SHA256 d2b2523f501b94d3dd936cccf67cccd568f13d479e76c18871a877e60ad2ec69
MD5 9665a1d79f46c3221299366ba486ac80
BLAKE2b-256 368b630b7f30aeaa431028b75c6a0439b810e429c98e0955fc55f61bb659827f

See more details on using hashes here.

File details

Details for the file clasplint-0.6.2-cp312-none-any.whl.

File metadata

  • Download URL: clasplint-0.6.2-cp312-none-any.whl
  • Upload date:
  • Size: 126.5 kB
  • Tags: CPython 3.12
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for clasplint-0.6.2-cp312-none-any.whl
Algorithm Hash digest
SHA256 b723e94f2891a684135898358c8e3b0313d32d09b8b41e89bbfad4b9c4309535
MD5 3a013ad8f88d3d99c9b5b66c01313656
BLAKE2b-256 77f98bac722a4dffc4b16e248c2e79486f39803e3b99d6a73bf0c1a02743e35f

See more details on using hashes here.

File details

Details for the file clasplint-0.6.2-cp311-none-any.whl.

File metadata

  • Download URL: clasplint-0.6.2-cp311-none-any.whl
  • Upload date:
  • Size: 126.5 kB
  • Tags: CPython 3.11
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for clasplint-0.6.2-cp311-none-any.whl
Algorithm Hash digest
SHA256 abb13ba5460d343beb5059bed8732d7a48c4fa04e69469822c6fe5ad805b335a
MD5 434232229db109113f287635c7b6907c
BLAKE2b-256 3fc1935e8e925df9fe2c6a3d5686a4cc822bee7d6ffcd9dfeeeeda388f5c309f

See more details on using hashes here.

File details

Details for the file clasplint-0.6.2-cp310-none-any.whl.

File metadata

  • Download URL: clasplint-0.6.2-cp310-none-any.whl
  • Upload date:
  • Size: 126.5 kB
  • Tags: CPython 3.10
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for clasplint-0.6.2-cp310-none-any.whl
Algorithm Hash digest
SHA256 f49396fc74e710fa3d99b8b0aef0d11ce2d6a492cb8dae29f87d27b7abed7073
MD5 4904bf29da93282b31c7d8d50481d3db
BLAKE2b-256 38547c499e4cd47b6d24be1f98ae671bfa08ad437e9a0468696a8dc5c4b6358c

See more details on using hashes here.

File details

Details for the file clasplint-0.6.2-cp39-none-any.whl.

File metadata

  • Download URL: clasplint-0.6.2-cp39-none-any.whl
  • Upload date:
  • Size: 126.5 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for clasplint-0.6.2-cp39-none-any.whl
Algorithm Hash digest
SHA256 549f6e62e47b9533374973c1f7822baee25b2b2519f0958265f7683c7fca8a69
MD5 f88d0a54384fe8b69e46c0cce34ebca8
BLAKE2b-256 a18016cc31361c2fd318c00659876d734dca2c0f6110142d4b7f4cc9bdbf8839

See more details on using hashes here.

File details

Details for the file clasplint-0.6.2-cp38-none-any.whl.

File metadata

  • Download URL: clasplint-0.6.2-cp38-none-any.whl
  • Upload date:
  • Size: 126.5 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.10

File hashes

Hashes for clasplint-0.6.2-cp38-none-any.whl
Algorithm Hash digest
SHA256 ac692a4df785f4b37ccbb0c9a3228e35dd460db6d92a06dd948c3225e7c4e3b8
MD5 fbada5b5e0690810fb3bce79a4fcbec0
BLAKE2b-256 d4544916e8042d79af5c65bd99ad8c264a44b8efc2995ac82a209b0a2c2314ab

See more details on using hashes here.

Release history Release notifications | RSS feed

0.7.0

8 files

This release

0.6.2 This release

8 files

0.6.1

8 files

0.6.0

8 files

0.5.5

8 files

0.5.4

8 files

0.5.3

8 files

0.5.2

8 files

0.5.1

8 files

0.5.0

8 files

0.4.4

8 files

0.4.3

8 files

0.4.2

8 files

0.4.1

8 files

0.4.0

8 files

0.3.0

8 files

0.2.0

8 files

0.1.0

8 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page