CLASPLint 0.4.1__tar.gz → 0.4.2__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 (26) hide show
  1. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/__init__.py +2 -2
  2. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/__main__.py +1 -1
  3. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/comment_checker.py +1 -1
  4. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/configuration.py +1 -1
  5. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/configuration.yaml +56 -2
  6. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/dict_key_checker.py +1 -1
  7. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/docstring_checker.py +1 -1
  8. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/function_checker.py +1 -1
  9. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/log_checker.py +1 -1
  10. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/naming_utils.py +1 -1
  11. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/reporter.py +1 -1
  12. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/runner.py +1 -1
  13. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint/variable_checker.py +1 -1
  14. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint.egg-info/PKG-INFO +1 -1
  15. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/PKG-INFO +1 -1
  16. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/pyproject.toml +1 -1
  17. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/setup.py +2 -2
  18. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint.egg-info/SOURCES.txt +0 -0
  19. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint.egg-info/dependency_links.txt +0 -0
  20. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint.egg-info/entry_points.txt +0 -0
  21. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint.egg-info/not-zip-safe +0 -0
  22. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/CLASPLint.egg-info/top_level.txt +0 -0
  23. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/LICENSE +0 -0
  24. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/MANIFEST.in +0 -0
  25. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/README.md +0 -0
  26. {CLASPLint-0.4.1 → CLASPLint-0.4.2}/setup.cfg +0 -0
@@ -25,7 +25,7 @@ PROJECT CREATE DATE : 2026-06-17
25
25
 
26
26
  PROJECT VERSION DATE : 2026-07-06
27
27
 
28
- PROJECT VERSION : 0.4.1
28
+ PROJECT VERSION : 0.4.2
29
29
 
30
30
 
31
31
  FILE CREATE DATE : 2026-06-17
@@ -73,6 +73,6 @@ Sort License:
73
73
  """
74
74
 
75
75
  # Define the package version string.
76
- __version__ = "0.4.1"
76
+ __version__ = "0.4.2"
77
77
  # Expose the runner and reporter modules as the public API.
78
78
  __all__ = ["runner", "reporter"]
@@ -23,7 +23,7 @@ PROJECT CREATE DATE : 2026-06-17
23
23
 
24
24
  PROJECT VERSION DATE : 2026-07-06
25
25
 
26
- PROJECT VERSION : 0.4.1
26
+ PROJECT VERSION : 0.4.2
27
27
 
28
28
 
29
29
  FILE CREATE DATE : 2026-06-17
@@ -23,7 +23,7 @@ PROJECT CREATE DATE : 2026-06-17
23
23
 
24
24
  PROJECT VERSION DATE : 2026-07-06
25
25
 
26
- PROJECT VERSION : 0.4.1
26
+ PROJECT VERSION : 0.4.2
27
27
 
28
28
 
29
29
  FILE CREATE DATE : 2026-06-17
@@ -26,7 +26,7 @@ PROJECT CREATE DATE : 2026-06-17
26
26
 
27
27
  PROJECT VERSION DATE : 2026-07-06
28
28
 
29
- PROJECT VERSION : 0.4.1
29
+ PROJECT VERSION : 0.4.2
30
30
 
31
31
 
32
32
  FILE CREATE DATE : 2026-07-06
@@ -26,14 +26,14 @@ PROJECT CREATE DATE : 2026-06-17
26
26
 
27
27
  PROJECT VERSION DATE : 2026-07-06
28
28
 
29
- PROJECT VERSION : 0.4.1
29
+ PROJECT VERSION : 0.4.2
30
30
 
31
31
 
32
32
  FILE CREATE DATE : 2026-07-06
33
33
 
34
34
  FILE VERSION DATE : 2026-07-06
35
35
 
36
- FILE VERSION : 0.1.0
36
+ FILE VERSION : 0.1.1
37
37
 
38
38
 
39
39
  STATUS : Stable
@@ -125,6 +125,22 @@ lower_acronyms:
125
125
  - jpeg
126
126
  # Exempt the logging information message compound name from abbreviation checks.
127
127
  - message_info
128
+ # Grant recognition to the central processing unit acronym in system hardware contexts.
129
+ - cpu
130
+ # Grant recognition to the cumulative distribution function acronym in statistical contexts.
131
+ - cdf
132
+ # Grant recognition to the scale-invariant feature transform acronym in computer vision contexts.
133
+ - sift
134
+ # Grant recognition to the north-east-down local coordinate system acronym.
135
+ - ned
136
+ # Grant recognition to the east-north-up local coordinate system acronym.
137
+ - enu
138
+ # Grant recognition to the yaw attitude angle acronym in drone and aerospace contexts.
139
+ - yaw
140
+ # Grant recognition to the pitch attitude angle acronym in drone and aerospace contexts.
141
+ - pitch
142
+ # Grant recognition to the GDAL color interpretation enumeration acronym.
143
+ - ci
128
144
 
129
145
  # Define the set of well-known acronyms kept in uppercase form for dictionary keys.
130
146
  upper_acronyms:
@@ -565,6 +581,44 @@ common_words:
565
581
  - "work"
566
582
  # Recognize each as a complete English word in per-element iteration contexts.
567
583
  - "each"
584
+ # Recognize best as a complete English word in optimal selection contexts.
585
+ - "best"
586
+ # Recognize core as a complete English word in fundamental component contexts.
587
+ - "core"
588
+ # Recognize east as a complete English word in cardinal direction contexts.
589
+ - "east"
590
+ # Recognize gain as a complete English word in signal amplitude contexts.
591
+ - "gain"
592
+ # Recognize good as a complete English word in quality classification contexts.
593
+ - "good"
594
+ # Recognize gray as a complete English word in monochrome intensity contexts.
595
+ - "gray"
596
+ # Recognize grid as a complete English word in regular spatial partition contexts.
597
+ - "grid"
598
+ # Recognize half as a complete English word in bisection division contexts.
599
+ - "half"
600
+ # Recognize high as a complete English word in elevated magnitude contexts.
601
+ - "high"
602
+ # Recognize last as a complete English word in final position contexts.
603
+ - "last"
604
+ # Recognize mask as a complete English word in bitwise and spatial filter contexts.
605
+ - "mask"
606
+ # Recognize mean as a complete English word in statistical average contexts.
607
+ - "mean"
608
+ # Recognize pool as a complete English word in resource aggregation contexts.
609
+ - "pool"
610
+ # Recognize roll as a complete English word in angular rotation contexts.
611
+ - "roll"
612
+ # Recognize sine as a complete English word in trigonometric function contexts.
613
+ - "sine"
614
+ # Recognize sort as a complete English word in ordering operation contexts.
615
+ - "sort"
616
+ # Recognize tile as a complete English word in spatial partitioning contexts.
617
+ - "tile"
618
+ # Recognize view as a complete English word in perspective and display contexts.
619
+ - "view"
620
+ # Recognize warp as a complete English word in geometric transformation contexts.
621
+ - "warp"
568
622
 
569
623
  # Keywords that start source lines exempt from the preceding-comment requirement.
570
624
  comment_exempt:
@@ -23,7 +23,7 @@ PROJECT CREATE DATE : 2026-06-17
23
23
 
24
24
  PROJECT VERSION DATE : 2026-07-06
25
25
 
26
- PROJECT VERSION : 0.4.1
26
+ PROJECT VERSION : 0.4.2
27
27
 
28
28
 
29
29
  FILE CREATE DATE : 2026-06-17
@@ -23,7 +23,7 @@ PROJECT CREATE DATE : 2026-06-17
23
23
 
24
24
  PROJECT VERSION DATE : 2026-07-06
25
25
 
26
- PROJECT VERSION : 0.4.1
26
+ PROJECT VERSION : 0.4.2
27
27
 
28
28
 
29
29
  FILE CREATE DATE : 2026-06-17
@@ -23,7 +23,7 @@ PROJECT CREATE DATE : 2026-06-17
23
23
 
24
24
  PROJECT VERSION DATE : 2026-07-06
25
25
 
26
- PROJECT VERSION : 0.4.1
26
+ PROJECT VERSION : 0.4.2
27
27
 
28
28
 
29
29
  FILE CREATE DATE : 2026-06-17
@@ -23,7 +23,7 @@ PROJECT CREATE DATE : 2026-06-17
23
23
 
24
24
  PROJECT VERSION DATE : 2026-07-06
25
25
 
26
- PROJECT VERSION : 0.4.1
26
+ PROJECT VERSION : 0.4.2
27
27
 
28
28
 
29
29
  FILE CREATE DATE : 2026-06-17
@@ -23,7 +23,7 @@ PROJECT CREATE DATE : 2026-06-17
23
23
 
24
24
  PROJECT VERSION DATE : 2026-07-06
25
25
 
26
- PROJECT VERSION : 0.4.1
26
+ PROJECT VERSION : 0.4.2
27
27
 
28
28
 
29
29
  FILE CREATE DATE : 2026-06-17
@@ -23,7 +23,7 @@ PROJECT CREATE DATE : 2026-06-17
23
23
 
24
24
  PROJECT VERSION DATE : 2026-07-06
25
25
 
26
- PROJECT VERSION : 0.4.1
26
+ PROJECT VERSION : 0.4.2
27
27
 
28
28
 
29
29
  FILE CREATE DATE : 2026-06-17
@@ -23,7 +23,7 @@ PROJECT CREATE DATE : 2026-06-17
23
23
 
24
24
  PROJECT VERSION DATE : 2026-07-06
25
25
 
26
- PROJECT VERSION : 0.4.1
26
+ PROJECT VERSION : 0.4.2
27
27
 
28
28
 
29
29
  FILE CREATE DATE : 2026-06-17
@@ -23,7 +23,7 @@ PROJECT CREATE DATE : 2026-06-17
23
23
 
24
24
  PROJECT VERSION DATE : 2026-07-06
25
25
 
26
- PROJECT VERSION : 0.4.1
26
+ PROJECT VERSION : 0.4.2
27
27
 
28
28
 
29
29
  FILE CREATE DATE : 2026-06-17
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: CLASPLint
3
- Version: 0.4.1
3
+ Version: 0.4.2
4
4
  Summary: CLASP 3.2 / PEP 2606 Static Analysis Tool — enforces naming and comment conventions beyond PEP 8.
5
5
  Author: Matt Belfast Brown
6
6
  Author-email: Matt Belfast Brown <thedayofthedo@gmail.com>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: CLASPLint
3
- Version: 0.4.1
3
+ Version: 0.4.2
4
4
  Summary: CLASP 3.2 / PEP 2606 Static Analysis Tool — enforces naming and comment conventions beyond PEP 8.
5
5
  Author: Matt Belfast Brown
6
6
  Author-email: Matt Belfast Brown <thedayofthedo@gmail.com>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "CLASPLint"
7
- version = "0.4.1"
7
+ version = "0.4.2"
8
8
  description = "CLASP 3.2 / PEP 2606 Static Analysis Tool — enforces naming and comment conventions beyond PEP 8."
9
9
  readme = "README.md"
10
10
  license = {text = "GPL-3.0-only"}
@@ -26,7 +26,7 @@ PROJECT CREATE DATE : 2026-06-17
26
26
 
27
27
  PROJECT VERSION DATE : 2026-07-06
28
28
 
29
- PROJECT VERSION : 0.4.1
29
+ PROJECT VERSION : 0.4.2
30
30
 
31
31
 
32
32
  FILE CREATE DATE : 2026-06-17
@@ -77,7 +77,7 @@ setup(
77
77
  # Declare the package name used for PyPI registration and pip install.
78
78
  name="CLASPLint",
79
79
  # Declare the semantic version following major.minor.patch convention.
80
- version="0.4.1",
80
+ version="0.4.2",
81
81
 
82
82
  # Provide a brief description of the tool for PyPI and help text.
83
83
  description="CLASP 3.2 / PEP 2606 Static Analysis Tool",
File without changes
File without changes
File without changes
File without changes