Skip to content

Stg#41

Merged
47thomasj merged 6 commits into
prdfrom
stg
Jul 14, 2025
Merged

Stg#41
47thomasj merged 6 commits into
prdfrom
stg

Conversation

@47thomasj
Copy link
Copy Markdown
Contributor

No description provided.

@47thomasj 47thomasj merged commit 07b064c into prd Jul 14, 2025
1 of 2 checks passed
Comment thread utils/patterns.py
# Allow single letters, constants (ALL_CAPS), and private names
if len(name_of_var) == 1 or name_of_var.isupper() or name_of_var.startswith('_'):
# Allow single letters, constants (ALL_CAPS), private names, and visit_ functions
if len(name_of_var) == 1 or name_of_var.isupper() or name_of_var.startswith('_') or name_of_var.startswith('visit_'):
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@47thomasj in the future, add a .standardignore file to TreeTapper repo (or whatever repo you are working on). There are simply to many cases where we inherit from a class that doesn't follow our naming standards. We don't need to update the check every time- that's too much work. Instead, just use the .standardignore file to indicate what variable names (or entire files) should be passed over when doing the check.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants