CLASPLint 0.3.0__tar.gz → 0.4.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. CLASPLint-0.4.0/CLASPLint/__init__.py +78 -0
  2. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint/__main__.py +64 -19
  3. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint/comment_checker.py +247 -129
  4. CLASPLint-0.4.0/CLASPLint/dict_key_checker.py +264 -0
  5. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint/docstring_checker.py +325 -201
  6. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint/function_checker.py +108 -69
  7. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint/log_checker.py +143 -73
  8. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint/naming_utils.py +168 -60
  9. CLASPLint-0.4.0/CLASPLint/reporter.py +393 -0
  10. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint/runner.py +109 -66
  11. CLASPLint-0.4.0/CLASPLint/variable_checker.py +626 -0
  12. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint.egg-info/PKG-INFO +107 -42
  13. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/LICENSE +1 -1
  14. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/MANIFEST.in +1 -1
  15. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/PKG-INFO +107 -42
  16. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/README.md +104 -40
  17. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/pyproject.toml +2 -2
  18. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/setup.py +4 -3
  19. CLASPLint-0.3.0/CLASPLint/__init__.py +0 -35
  20. CLASPLint-0.3.0/CLASPLint/dict_key_checker.py +0 -184
  21. CLASPLint-0.3.0/CLASPLint/reporter.py +0 -190
  22. CLASPLint-0.3.0/CLASPLint/variable_checker.py +0 -340
  23. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint.egg-info/SOURCES.txt +0 -0
  24. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint.egg-info/dependency_links.txt +0 -0
  25. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint.egg-info/entry_points.txt +0 -0
  26. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint.egg-info/top_level.txt +0 -0
  27. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/CLASPLint.egg-info/zip-safe +0 -0
  28. {CLASPLint-0.3.0 → CLASPLint-0.4.0}/setup.cfg +0 -0
@@ -0,0 +1,78 @@
1
+ # -*- coding: utf-8 -*-
2
+ """
3
+ THIS FILE IS CORE PART OF CLASPLINT BY MATT BELFAST BROWN.
4
+
5
+ ===============================================================================
6
+
7
+ MODULE : CLASPLint.__init__
8
+
9
+ TYPE : Python Script
10
+
11
+ DESCRIPTION :
12
+ Package entry point and public API surface. Exposes the runner and reporter
13
+ modules as the primary public interface for programmatic use of the CLASP
14
+ 3.2 / PEP 2606 static analysis engine.
15
+
16
+ AUTHOR : Matt Belfast Brown
17
+
18
+ CONTACT : thedayofthedo@gmail.com
19
+
20
+ MAINTAINER :
21
+ Matt Belfast Brown (thedayofthedo@gmail.com)
22
+
23
+
24
+ PROJECT CREATE DATE : 2026-06-17
25
+
26
+ PROJECT VERSION DATE : 2026-07-05
27
+
28
+ PROJECT VERSION : 0.4.0
29
+
30
+
31
+ FILE CREATE DATE : 2026-06-17
32
+
33
+ FILE VERSION DATE : 2026-07-05
34
+
35
+ FILE VERSION : 0.4.0
36
+
37
+
38
+ STATUS : Stable
39
+
40
+ PYTHON : >=3.8
41
+
42
+ LICENSE : GPL-3.0-only
43
+
44
+ SPDX ID : GPL-3.0-only
45
+
46
+
47
+ USAGE :
48
+ import CLASPLint
49
+
50
+ report = CLASPLint.runner.run(["path/to/code/"])
51
+ print(report.summary())
52
+
53
+ ===============================================================================
54
+
55
+ THIS PROGRAM IS LICENSED UNDER GPL-3.0-only LICENSE.
56
+ YOU SHOULD HAVE RECEIVED A COPY OF GPL-3.0-only LICENSE.
57
+
58
+ Copyright (C) 2026 Matt Belfast Brown.
59
+
60
+ Sort License:
61
+
62
+ CLASPLint is free software: you can redistribute it and/or modify
63
+ it under the terms of the GNU General Public License as published by
64
+ the Free Software Foundation, version 3 of the License.
65
+
66
+ CLASPLint is distributed in the hope that it will be useful,
67
+ but WITHOUT ANY WARRANTY; without even the implied warranty
68
+ of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
69
+ GNU General Public License for more details.
70
+
71
+ You should have received a copy of the GNU General Public License
72
+ along with CLASPLint. If not, see <https://www.gnu.org/licenses/>.
73
+ """
74
+
75
+ # Define the package version string.
76
+ __version__ = "0.4.0"
77
+ # Expose the runner and reporter modules as the public API.
78
+ __all__ = ["runner", "reporter"]
@@ -1,29 +1,74 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- THIS FILE IS PART OF CLASPLINT BY MATT BELFAST BROWN
4
- CLASPLint.__main__ -- command-line entry point for the CLASP 3.1.1 static analysis tool.
3
+ THIS FILE IS CORE PART OF CLASPLINT BY MATT BELFAST BROWN.
5
4
 
6
- Author: Matt Belfast Brown
7
- Create Date: 2026-06-17
8
- Version Date: 2026-07-01
9
- Version: 0.3.0
5
+ ===============================================================================
10
6
 
11
- THIS PROGRAM IS LICENSED UNDER GPL-3.0
12
- YOU SHOULD HAVE RECEIVED A COPY OF GPL-3.0 LICENSE.
7
+ MODULE : CLASPLint.__main__
13
8
 
14
- Copyright (C) 2026 Matt Belfast Brown
9
+ TYPE : Python Script
15
10
 
16
- CLASPLint is free software: you can redistribute it and/or modify
17
- it under the terms of the GNU General Public License as published by
18
- the Free Software Foundation, version 3 of the License.
11
+ DESCRIPTION :
12
+ Command-line entry point for the CLASP 3.2 / PEP 2606 static analysis tool.
19
13
 
20
- CLASPLint is distributed in the hope that it will be useful,
21
- but WITHOUT ANY WARRANTY; without even the implied warranty
22
- of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23
- GNU General Public License for more details.
14
+ AUTHOR : Matt Belfast Brown
24
15
 
25
- You should have received a copy of the GNU General Public License
26
- along with CLASPLint. If not, see <https://www.gnu.org/licenses/>.
16
+ CONTACT : thedayofthedo@gmail.com
17
+
18
+ MAINTAINER :
19
+ Matt Belfast Brown (thedayofthedo@gmail.com)
20
+
21
+
22
+ PROJECT CREATE DATE : 2026-06-17
23
+
24
+ PROJECT VERSION DATE : 2026-07-05
25
+
26
+ PROJECT VERSION : 0.4.0
27
+
28
+
29
+ FILE CREATE DATE : 2026-06-17
30
+
31
+ FILE VERSION DATE : 2026-07-05
32
+
33
+ FILE VERSION : 0.4.0
34
+
35
+
36
+ STATUS : Stable
37
+
38
+ PYTHON : >=3.8
39
+
40
+ LICENSE : GPL-3.0-only
41
+
42
+ SPDX ID : GPL-3.0-only
43
+
44
+
45
+ USAGE :
46
+ CLASPLint path/to/file.py
47
+
48
+ CLASPLint --quiet src/
49
+
50
+ CLASPLint --category variable src/
51
+
52
+ ===============================================================================
53
+
54
+ THIS PROGRAM IS LICENSED UNDER GPL-3.0-only LICENSE.
55
+ YOU SHOULD HAVE RECEIVED A COPY OF GPL-3.0-only LICENSE.
56
+
57
+ Copyright (C) 2026 Matt Belfast Brown.
58
+
59
+ Sort License:
60
+
61
+ CLASPLint is free software: you can redistribute it and/or modify
62
+ it under the terms of the GNU General Public License as published by
63
+ the Free Software Foundation, version 3 of the License.
64
+
65
+ CLASPLint is distributed in the hope that it will be useful,
66
+ but WITHOUT ANY WARRANTY; without even the implied warranty
67
+ of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
68
+ GNU General Public License for more details.
69
+
70
+ You should have received a copy of the GNU General Public License
71
+ along with CLASPLint. If not, see <https://www.gnu.org/licenses/>.
27
72
  """
28
73
 
29
74
  import argparse
@@ -42,7 +87,7 @@ def _init_build_parser_function_() -> argparse.ArgumentParser:
42
87
  # Set the program name displayed in help text.
43
88
  prog="CLASPLint",
44
89
  # Provide a description of what the tool does.
45
- description="CLASP 3.1.1 / PEP 2606 static analysis tool. "
90
+ description="CLASP 3.2 / PEP 2606 static analysis tool. "
46
91
  # Continue the description across multiple lines for readability.
47
92
  "Checks variable, dict key, function, class naming "
48
93
  # Complete the tool description with comment and log conventions.