Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix FN for invalid-name for type-annotated module constants #9771

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

jacobtylerwalls
Copy link
Member

Type of Changes

Type
βœ“ πŸ› Bug fix

Description

Closes #9770

@jacobtylerwalls jacobtylerwalls added this to the 3.3.0 milestone Jul 7, 2024

This comment has been minimized.

Copy link
Contributor

github-actions bot commented Jul 7, 2024

πŸ€– Effect of this PR on checked open source code: πŸ€–

Effect on astroid:
The following messages are now emitted:

  1. invalid-name:
    Constant name "prefix" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/pylint-dev/astroid/blob/d50f0f29cc2e0fa0991b0ef129c2ffdbf5dafe16/astroid/modutils.py#L82
  2. invalid-name:
    Constant name "cache" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/pylint-dev/astroid/blob/d50f0f29cc2e0fa0991b0ef129c2ffdbf5dafe16/astroid/inference_tip.py#L22
  3. invalid-name:
    Constant name "MetaPathFinderModuleTypes" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/pylint-dev/astroid/blob/d50f0f29cc2e0fa0991b0ef129c2ffdbf5dafe16/astroid/interpreter/_import/spec.py#L55
  4. invalid-name:
    Constant name "EditableFinderClasses" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/pylint-dev/astroid/blob/d50f0f29cc2e0fa0991b0ef129c2ffdbf5dafe16/astroid/interpreter/_import/spec.py#L63

Effect on home-assistant:
The following messages are now emitted:

  1. invalid-name:
    Constant name "_function_cache" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/exceptions.py#L15
  2. invalid-name:
    Constant name "current_setup_group" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/setup.py#L38
  3. invalid-name:
    Constant name "current_entry" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/config_entries.py#L1172
  4. invalid-name:
    Constant name "trace_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/helpers/trace.py#L102
  5. invalid-name:
    Constant name "trace_stack_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/helpers/trace.py#L106
  6. invalid-name:
    Constant name "trace_path_stack_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/helpers/trace.py#L110
  7. invalid-name:
    Constant name "variables_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/helpers/trace.py#L114
  8. invalid-name:
    Constant name "trace_id_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/helpers/trace.py#L116
  9. invalid-name:
    Constant name "script_execution_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/helpers/trace.py#L120
  10. invalid-name:
    Constant name "current_request" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/helpers/http.py#L39
  11. invalid-name:
    Constant name "_render_info" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/helpers/template.py#L126
  12. invalid-name:
    Constant name "template_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/helpers/template.py#L129
  13. invalid-name:
    Constant name "_types" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/helpers/template.py#L317
  14. invalid-name:
    Constant name "current_platform" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/helpers/entity_platform.py#L1061
  15. invalid-name:
    Constant name "script_stack_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/helpers/script.py#L160
  16. invalid-name:
    Constant name "_current_trace" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/components/conversation/trace.py#L78
  17. invalid-name:
    Constant name "_recent_traces" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/52de706a8579a4360ef09a80c8bcf3868f6da082/homeassistant/components/conversation/trace.py#L81

Effect on poetry-core:
The following messages are now emitted:

  1. invalid-name:
    Constant name "_executable" doesn't conform to UPPER_CASE naming style
    https://github.com/python-poetry/poetry-core/blob/06d72bc0f1f05086a1cc0e760075c519af33db5b/src/poetry/core/vcs/git.py#L152

Effect on black:
The following messages are now emitted:

  1. invalid-name:
    Constant name "middleware" doesn't conform to UPPER_CASE naming style
    https://github.com/psf/black/blob/7e2afc9bfdc4ec4bc3297aaa16a62d575249a5e0/src/blackd/middlewares.py#L8
  2. invalid-name:
    Constant name "_type_reprs" doesn't conform to UPPER_CASE naming style
    https://github.com/psf/black/blob/7e2afc9bfdc4ec4bc3297aaa16a62d575249a5e0/src/blib2to3/pytree.py#L37
  3. invalid-name:
    Constant name "python_grammar" doesn't conform to UPPER_CASE naming style
    https://github.com/psf/black/blob/7e2afc9bfdc4ec4bc3297aaa16a62d575249a5e0/src/blib2to3/pygram.py#L157
  4. invalid-name:
    Constant name "python_grammar_async_keywords" doesn't conform to UPPER_CASE naming style
    https://github.com/psf/black/blob/7e2afc9bfdc4ec4bc3297aaa16a62d575249a5e0/src/blib2to3/pygram.py#L158
  5. invalid-name:
    Constant name "python_grammar_soft_keywords" doesn't conform to UPPER_CASE naming style
    https://github.com/psf/black/blob/7e2afc9bfdc4ec4bc3297aaa16a62d575249a5e0/src/blib2to3/pygram.py#L159
  6. invalid-name:
    Constant name "pattern_grammar" doesn't conform to UPPER_CASE naming style
    https://github.com/psf/black/blob/7e2afc9bfdc4ec4bc3297aaa16a62d575249a5e0/src/blib2to3/pygram.py#L160
  7. invalid-name:
    Constant name "python_symbols" doesn't conform to UPPER_CASE naming style
    https://github.com/psf/black/blob/7e2afc9bfdc4ec4bc3297aaa16a62d575249a5e0/src/blib2to3/pygram.py#L161
  8. invalid-name:
    Constant name "pattern_symbols" doesn't conform to UPPER_CASE naming style
    https://github.com/psf/black/blob/7e2afc9bfdc4ec4bc3297aaa16a62d575249a5e0/src/blib2to3/pygram.py#L162
  9. invalid-name:
    Constant name "simple_escapes" doesn't conform to UPPER_CASE naming style
    https://github.com/psf/black/blob/7e2afc9bfdc4ec4bc3297aaa16a62d575249a5e0/src/blib2to3/pgen2/literals.py#L9

Effect on music21:
The following messages are now emitted:

  1. invalid-name:
    Constant name "pitchStep" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/defaults.py#L44
  2. invalid-name:
    Constant name "instrumentName" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/defaults.py#L52
  3. invalid-name:
    Constant name "partName" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/defaults.py#L53
  4. invalid-name:
    Constant name "typeToDuration" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/duration.py#L96
  5. invalid-name:
    Constant name "typeFromNumDict" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/duration.py#L116
  6. invalid-name:
    Constant name "typeFromNumDictKeys" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/duration.py#L135
  7. invalid-name:
    Constant name "ordinalTypeFromNum" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/duration.py#L137
  8. invalid-name:
    Constant name "defaultTupletNumerators" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/duration.py#L157
  9. invalid-name:
    Constant name "extendedTupletNumerators" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/duration.py#L159
  10. invalid-name:
    Constant name "durationTupleCacheTypeDots" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/duration.py#L872
  11. invalid-name:
    Constant name "durationTupleCacheQuarterLength" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/duration.py#L873
  12. invalid-name:
    Constant name "pythagorean_cache" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/interval.py#L645
  13. invalid-name:
    Constant name "m21ObjDefaultDefinedKeys" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/base.py#L4030
  14. invalid-name:
    Constant name "sharpsToPitchCache" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/key.py#L49
  15. invalid-name:
    Constant name "intervalCache" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/voiceLeading.py#L64
  16. invalid-name:
    Constant name "scaleCache" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/roman.py#L55
  17. invalid-name:
    Constant name "keyCache" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/roman.py#L56
  18. invalid-name:
    Constant name "figureShorthandsMode" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/roman.py#L118
  19. invalid-name:
    Constant name "functionalityScores" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/roman.py#L127
  20. invalid-name:
    Constant name "stored_trigrams" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/text.py#L370
  21. invalid-name:
    Constant name "realizerScaleCache" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/harmony.py#L1419
  22. invalid-name:
    Constant name "t1" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L64
  23. invalid-name:
    Constant name "t2" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L65
  24. invalid-name:
    Constant name "t3" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L66
  25. invalid-name:
    Constant name "t4" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L67
  26. invalid-name:
    Constant name "t5" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L68
  27. invalid-name:
    Constant name "t6" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L69
  28. invalid-name:
    Constant name "t7" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L70
  29. invalid-name:
    Constant name "t8" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L71
  30. invalid-name:
    Constant name "t9" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L72
  31. invalid-name:
    Constant name "t10" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L73
  32. invalid-name:
    Constant name "t11" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L74
  33. invalid-name:
    Constant name "t12" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L75
  34. invalid-name:
    Constant name "t13" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L76
  35. invalid-name:
    Constant name "t14" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L77
  36. invalid-name:
    Constant name "t15" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L78
  37. invalid-name:
    Constant name "t16" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L79
  38. invalid-name:
    Constant name "t17" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L80
  39. invalid-name:
    Constant name "t18" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L81
  40. invalid-name:
    Constant name "t19" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L82
  41. invalid-name:
    Constant name "t20" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L83
  42. invalid-name:
    Constant name "t21" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L84
  43. invalid-name:
    Constant name "t22" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L85
  44. invalid-name:
    Constant name "t23" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L86
  45. invalid-name:
    Constant name "t24" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L87
  46. invalid-name:
    Constant name "t25" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L88
  47. invalid-name:
    Constant name "t26" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L90
  48. invalid-name:
    Constant name "t27" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L91
  49. invalid-name:
    Constant name "t28" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L92
  50. invalid-name:
    Constant name "t29" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L93
  51. invalid-name:
    Constant name "t30" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L94
  52. invalid-name:
    Constant name "t31" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L95
  53. invalid-name:
    Constant name "t32" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L96
  54. invalid-name:
    Constant name "t33" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L97
  55. invalid-name:
    Constant name "t34" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L98
  56. invalid-name:
    Constant name "t35" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L99
  57. invalid-name:
    Constant name "t36" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L100
  58. invalid-name:
    Constant name "t37" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L101
  59. invalid-name:
    Constant name "t38" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L102
  60. invalid-name:
    Constant name "t39" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L103
  61. invalid-name:
    Constant name "t40" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L104
  62. invalid-name:
    Constant name "t41" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L105
  63. invalid-name:
    Constant name "t42" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L106
  64. invalid-name:
    Constant name "t43" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L107
  65. invalid-name:
    Constant name "t44" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L108
  66. invalid-name:
    Constant name "t45" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L109
  67. invalid-name:
    Constant name "t46" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L110
  68. invalid-name:
    Constant name "t47" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L111
  69. invalid-name:
    Constant name "t48" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L112
  70. invalid-name:
    Constant name "t49" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L113
  71. invalid-name:
    Constant name "t50" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/chord/tables.py#L114
  72. invalid-name:
    Constant name "rnKeyCache" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/romanText/translate.py#L335
  73. invalid-name:
    Constant name "test_bundles" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/metadata/bundles.py#L1331
  74. invalid-name:
    Constant name "registeredSubConverters" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/converter/__init__.py#L384
  75. invalid-name:
    Constant name "deregisteredSubConverters" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/converter/__init__.py#L387
  76. invalid-name:
    Constant name "recognizableKeys" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/musicxml/xmlToM21.py#L81
  77. invalid-name:
    Constant name "numbersUpper" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/braille/lookup.py#L193
  78. invalid-name:
    Constant name "numbersLower" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/braille/lookup.py#L205
  79. invalid-name:
    Constant name "rests" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/braille/lookup.py#L218
  80. invalid-name:
    Constant name "lengthPrefixes" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/braille/lookup.py#L232
  81. invalid-name:
    Constant name "barlines" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/braille/lookup.py#L239
  82. invalid-name:
    Constant name "fingerMarks" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/braille/lookup.py#L246
  83. invalid-name:
    Constant name "alphabet" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/braille/lookup.py#L306
  84. invalid-name:
    Constant name "beamStatus" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/braille/basic.py#L69
  85. invalid-name:
    Constant name "affinityCodes" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/braille/segment.py#L90
  86. invalid-name:
    Constant name "affinityNames" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/braille/segment.py#L104
  87. invalid-name:
    Constant name "excludeFromBrailleElements" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/braille/segment.py#L115
  88. invalid-name:
    Constant name "pitchDegreeCache" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/scale/__init__.py#L96
  89. invalid-name:
    Constant name "parallelFifthsTable" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/figuredBass/possibility.py#L277
  90. invalid-name:
    Constant name "parallelOctavesTable" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/figuredBass/possibility.py#L278
  91. invalid-name:
    Constant name "hiddenFifthsTable" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/figuredBass/possibility.py#L279
  92. invalid-name:
    Constant name "hiddenOctavesTable" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/figuredBass/possibility.py#L280
  93. invalid-name:
    Constant name "parallelFifthsTable" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/figuredBass/checker.py#L398
  94. invalid-name:
    Constant name "parallelOctavesTable" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/figuredBass/checker.py#L399
  95. invalid-name:
    Constant name "hiddenFifthsTable" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/figuredBass/checker.py#L400
  96. invalid-name:
    Constant name "hiddenOctavesTable" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/figuredBass/checker.py#L401
  97. invalid-name:
    Constant name "defaultRealizerScale" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/figuredBass/segment.py#L31
  98. invalid-name:
    Constant name "metadataBundles" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/corpus/manager.py#L41
  99. invalid-name:
    Constant name "meterSequenceAccentArchetypes" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/meter/base.py#L57
  100. invalid-name:
    Constant name "pitchTranslationCache" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/cuthbertLab/music21/blob/204e9d0b9eec2f2d6ff8d8d3b13c41f912050604/music21/abcFormat/__init__.py#L119

Effect on pytest:
The following messages are now emitted:

  1. invalid-name:
    Constant name "filescompleter" doesn't conform to UPPER_CASE naming style
    https://github.com/pytest-dev/pytest/blob/9de29bfe1b02e5b9924dac06ed24ecbaa7b192a5/src/_pytest/_argcomplete.py#L107
  2. invalid-name:
    Constant name "_reprcompare" doesn't conform to UPPER_CASE naming style
    https://github.com/pytest-dev/pytest/blob/9de29bfe1b02e5b9924dac06ed24ecbaa7b192a5/src/_pytest/assertion/util.py#L31
  3. invalid-name:
    Constant name "_assertion_pass" doesn't conform to UPPER_CASE naming style
    https://github.com/pytest-dev/pytest/blob/9de29bfe1b02e5b9924dac06ed24ecbaa7b192a5/src/_pytest/assertion/util.py#L35
  4. invalid-name:
    Constant name "_config" doesn't conform to UPPER_CASE naming style
    https://github.com/pytest-dev/pytest/blob/9de29bfe1b02e5b9924dac06ed24ecbaa7b192a5/src/_pytest/assertion/util.py#L38
  5. invalid-name:
    Constant name "imply_paths_hooks" doesn't conform to UPPER_CASE naming style
    https://github.com/pytest-dev/pytest/blob/9de29bfe1b02e5b9924dac06ed24ecbaa7b192a5/src/_pytest/config/compat.py#L17

Effect on pandas:
The following messages are now emitted:

  1. invalid-name:
    Constant name "_shared_docs_kwargs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/resample.py#L122
  2. invalid-name:
    Constant name "_max_examples" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/generic.py#L12456
  3. invalid-name:
    Constant name "_min_examples" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/generic.py#L12460
  4. invalid-name:
    Constant name "_shared_docs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/base.py#L87
  5. invalid-name:
    Constant name "_shared_docs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/shared_docs.py#L3
  6. invalid-name:
    Constant name "default_dtype_mapping" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/_numba/executor.py#L111
  7. invalid-name:
    Constant name "float_dtype_mapping" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/_numba/executor.py#L129
  8. invalid-name:
    Constant name "identity_dtype_mapping" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/_numba/executor.py#L144
  9. invalid-name:
    Constant name "_index_doc_kwargs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/indexes/base.py#L216
  10. invalid-name:
    Constant name "_index_shared_docs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/indexes/base.py#L224
  11. invalid-name:
    Constant name "_evaluate" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/computation/expressions.py#L33
  12. invalid-name:
    Constant name "_where" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/computation/expressions.py#L34
  13. invalid-name:
    Constant name "_op_descriptions" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/ops/docstrings.py#L305
  14. invalid-name:
    Constant name "_shared_docs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/strings/accessor.py#L63
  15. invalid-name:
    Constant name "_interval_shared_docs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/arrays/interval.py#L115
  16. invalid-name:
    Constant name "_extension_array_shared_docs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/236d89b8565df844da0badfbc9f2db7084883933/pandas/core/arrays/base.py#L108

Effect on sentry:
The following messages are now emitted:

  1. invalid-name:
    Constant name "_receivers_that_raise" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/signals.py#L18
  2. invalid-name:
    Constant name "observations" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/_importchecker.py#L16
  3. invalid-name:
    Constant name "import_order" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/_importchecker.py#L17
  4. invalid-name:
    Constant name "log_service" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/audit_log/services/log/service.py#L60
  5. invalid-name:
    Constant name "openai_client" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/llm/providers/openai.py#L42
  6. invalid-name:
    Constant name "llm_provider_backends" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/llm/usecases/__init__.py#L24
  7. invalid-name:
    Constant name "urlpatterns" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/web/urls.py#L59
  8. invalid-name:
    Constant name "_organization_check_service" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/organizations/services/organization/service.py#L649
  9. invalid-name:
    Constant name "_organization_signal_service" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/organizations/services/organization/service.py#L658
  10. invalid-name:
    Constant name "_global_service_registry" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/hybridcloud/rpc/service.py#L203
  11. invalid-name:
    Constant name "service_healthchecks" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/runner/commands/devservices.py#L833
  12. invalid-name:
    Constant name "_client" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/filestore/gcs.py#L50
  13. invalid-name:
    Constant name "error_processors" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/lang/javascript/errormapping.py#L34
  14. invalid-name:
    Constant name "_accountant_backend" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/usage_accountant/accountant.py#L23
  15. invalid-name:
    Constant name "access_service" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/auth/services/access/service.py#L140
  16. invalid-name:
    Constant name "orgauthtoken_service" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/auth/services/orgauthtoken/service.py#L49
  17. invalid-name:
    Constant name "_protected_operations" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/testutils/silo.py#L417
  18. invalid-name:
    Constant name "_snapshot_writeback" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/testutils/pytest/fixtures.py#L160
  19. invalid-name:
    Constant name "registry" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/notifications/notify.py#L23
  20. invalid-name:
    Constant name "_outbox_categories_for_scope" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/models/outbox.py#L56
  21. invalid-name:
    Constant name "_used_categories" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/models/outbox.py#L57
  22. invalid-name:
    Constant name "context_types" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/interfaces/contexts.py#L16
  23. invalid-name:
    Constant name "key" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/rules/conditions/level.py#L18
  24. invalid-name:
    Constant name "_fencing_counters" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/silo/safety.py#L17
  25. invalid-name:
    Constant name "_last_validation_log" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/buffer/redis.py#L38
  26. invalid-name:
    Constant name "_default_logger" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/integrations/repository/metric_alert.py#L15
  27. invalid-name:
    Constant name "_default_logger" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/integrations/repository/issue_alert.py#L17
  28. invalid-name:
    Constant name "display_modes" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/integrations/slack/unfurl/discover.py#L35
  29. invalid-name:
    Constant name "_default_logger" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/integrations/slack/actions/notification.py#L41
  30. invalid-name:
    Constant name "subscriber_registry" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/snuba/query_subscriptions/consumer.py#L20
  31. invalid-name:
    Constant name "urlpatterns" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/conf/urls.py#L13
  32. invalid-name:
    Constant name "_env_cache" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/conf/server.py#L92
  33. invalid-name:
    Constant name "alert_subscription_callback_registry" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/incidents/models/alert_rule.py#L50
  34. invalid-name:
    Constant name "backends" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/monitoring/queues.py#L115
  35. invalid-name:
    Constant name "backend" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/monitoring/queues.py#L122
  36. invalid-name:
    Constant name "value_converters" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/api/issue_search.py#L243
  37. invalid-name:
    Constant name "_path_patterns" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/api/utils.py#L308
  38. invalid-name:
    Constant name "advanced_search_features" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/api/helpers/group_index/index.py#L39
  39. invalid-name:
    Constant name "openai_client" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/api/endpoints/event_ai_suggested_fix.py#L113
  40. invalid-name:
    Constant name "logger" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/api/endpoints/auth_validate.py#L14
  41. invalid-name:
    Constant name "logger" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/api/endpoints/organization_events_trace.py#L38
  42. invalid-name:
    Constant name "logger" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/api/endpoints/auth_index.py#L29
  43. invalid-name:
    Constant name "internal_only_project_settings_to_group_map" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/api/endpoints/project_performance_issue_settings.py#L69
  44. invalid-name:
    Constant name "configurable_thresholds_to_internal_settings_map" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/api/endpoints/project_performance_issue_settings.py#L84
  45. invalid-name:
    Constant name "registry" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/api/serializers/base.py#L14
  46. invalid-name:
    Constant name "_global_regions" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/types/region.py#L211
  47. invalid-name:
    Constant name "default_cache" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/cache/__init__.py#L12
  48. invalid-name:
    Constant name "outcomes_publisher" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/utils/outcomes.py#L36
  49. invalid-name:
    Constant name "billing_publisher" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/utils/outcomes.py#L37
  50. invalid-name:
    Constant name "SafeLoader" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/utils/yaml.py#L8
  51. invalid-name:
    Constant name "_type_mapping" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/utils/types.py#L173
  52. invalid-name:
    Constant name "_pool_cache" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/utils/redis.py#L35
  53. invalid-name:
    Constant name "rust_geoip" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/utils/geo.py#L17
  54. invalid-name:
    Constant name "_snowflake_models" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/utils/snowflake.py#L23
  55. invalid-name:
    Constant name "_from_email_domain_cache" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/utils/email/address.py#L14
  56. invalid-name:
    Constant name "default_list_type_handlers" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/utils/email/message_builder.py#L36
  57. invalid-name:
    Constant name "sync_publisher" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/lib/kafka.py#L7
  58. invalid-name:
    Constant name "async_publisher" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/lib/kafka.py#L8
  59. invalid-name:
    Constant name "query_config" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/endpoints/organization_replay_selector_index.py#L349
  60. invalid-name:
    Constant name "expressions" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/usecases/query/configs/materialized_view.py#L43
  61. invalid-name:
    Constant name "search_config" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/usecases/query/configs/materialized_view.py#L88
  62. invalid-name:
    Constant name "sort_config" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/usecases/query/configs/materialized_view.py#L157
  63. invalid-name:
    Constant name "select_config" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/usecases/query/configs/materialized_view.py#L207
  64. invalid-name:
    Constant name "search_config" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/usecases/query/configs/aggregate.py#L76
  65. invalid-name:
    Constant name "optimized_sort_fields" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/usecases/query/configs/aggregate_sort.py#L81
  66. invalid-name:
    Constant name "static_search_config" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/usecases/query/configs/scalar.py#L31
  67. invalid-name:
    Constant name "varying_search_config" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/usecases/query/configs/scalar.py#L58
  68. invalid-name:
    Constant name "click_search_config" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/usecases/query/configs/scalar.py#L77
  69. invalid-name:
    Constant name "replay_publisher" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/replays/usecases/ingest/dom_index.py#L25
  70. invalid-name:
    Constant name "numeric_modifiers" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/search/utils.py#L520
  71. invalid-name:
    Constant name "key_conversion_map" doesn't conform to UPPER_CASE naming style
    https://github.com/getsentry/sentry/blob/566f4a0a04d9a9dd6f1a56d13808ea715b913e8b/src/sentry/search/events/filter.py#L566

Effect on flask:
The following messages are now emitted:

  1. invalid-name:
    Constant name "_cv_app" doesn't conform to UPPER_CASE naming style
    https://github.com/pallets/flask/blob/66af0e55ef6631d05c691707da19d0f1c46921ea/src/flask/globals.py#L24
  2. invalid-name:
    Constant name "app_ctx" doesn't conform to UPPER_CASE naming style
    https://github.com/pallets/flask/blob/66af0e55ef6631d05c691707da19d0f1c46921ea/src/flask/globals.py#L25
  3. invalid-name:
    Constant name "current_app" doesn't conform to UPPER_CASE naming style
    https://github.com/pallets/flask/blob/66af0e55ef6631d05c691707da19d0f1c46921ea/src/flask/globals.py#L28
  4. invalid-name:
    Constant name "g" doesn't conform to UPPER_CASE naming style
    https://github.com/pallets/flask/blob/66af0e55ef6631d05c691707da19d0f1c46921ea/src/flask/globals.py#L31
  5. invalid-name:
    Constant name "_cv_request" doesn't conform to UPPER_CASE naming style
    https://github.com/pallets/flask/blob/66af0e55ef6631d05c691707da19d0f1c46921ea/src/flask/globals.py#L42
  6. invalid-name:
    Constant name "request_ctx" doesn't conform to UPPER_CASE naming style
    https://github.com/pallets/flask/blob/66af0e55ef6631d05c691707da19d0f1c46921ea/src/flask/globals.py#L43
  7. invalid-name:
    Constant name "request" doesn't conform to UPPER_CASE naming style
    https://github.com/pallets/flask/blob/66af0e55ef6631d05c691707da19d0f1c46921ea/src/flask/globals.py#L46
  8. invalid-name:
    Constant name "session" doesn't conform to UPPER_CASE naming style
    https://github.com/pallets/flask/blob/66af0e55ef6631d05c691707da19d0f1c46921ea/src/flask/globals.py#L49

Effect on psycopg:
The following messages are now emitted:

  1. invalid-name:
    Constant name "PendingResult" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_pipeline.py#L30
  2. invalid-name:
    Constant name "TupleRow" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/rows.py#L86
  3. invalid-name:
    Constant name "DictRow" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/rows.py#L92
  4. invalid-name:
    Constant name "NoneType" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L25
  5. invalid-name:
    Constant name "Buffer" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L28
  6. invalid-name:
    Constant name "Query" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L30
  7. invalid-name:
    Constant name "Params" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L31
  8. invalid-name:
    Constant name "PipelineCommand" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L33
  9. invalid-name:
    Constant name "DumperKey" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L34
  10. invalid-name:
    Constant name "ConnParam" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L35
  11. invalid-name:
    Constant name "ConnDict" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L36
  12. invalid-name:
    Constant name "ConnMapping" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L37
  13. invalid-name:
    Constant name "PQGenConn" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L44
  14. invalid-name:
    Constant name "PQGen" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L50
  15. invalid-name:
    Constant name "DumpFunc" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L67
  16. invalid-name:
    Constant name "LoadFunc" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/abc.py#L68
  17. invalid-name:
    Constant name "Key" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_preparing.py#L22
  18. invalid-name:
    Constant name "_timezones" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_tz.py#L17
  19. invalid-name:
    Constant name "wait" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/waiting.py#L396
  20. invalid-name:
    Constant name "py_codecs" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_encodings.py#L71
  21. invalid-name:
    Constant name "_Query2Pg" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_queries.py#L171
  22. invalid-name:
    Constant name "_Query2PgClient" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_queries.py#L287
  23. invalid-name:
    Constant name "DumperCache" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_py_transformer.py#L32
  24. invalid-name:
    Constant name "OidDumperCache" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_py_transformer.py#L33
  25. invalid-name:
    Constant name "LoaderCache" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_py_transformer.py#L34
  26. invalid-name:
    Constant name "ErrorInfo" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/errors.py#L34
  27. invalid-name:
    Constant name "_sqlcodes" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/errors.py#L36
  28. invalid-name:
    Constant name "Transformer" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_transformer.py#L14
  29. invalid-name:
    Constant name "NoticeHandler" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_connection_base.py#L74
  30. invalid-name:
    Constant name "NotifyHandler" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_connection_base.py#L75
  31. invalid-name:
    Constant name "Worker" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_acompat.py#L20
  32. invalid-name:
    Constant name "AWorker" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_acompat.py#L21
  33. invalid-name:
    Constant name "_GQueue" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_acompat.py#L27
  34. invalid-name:
    Constant name "_AGQueue" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_acompat.py#L28
  35. invalid-name:
    Constant name "PackInt" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_struct.py#L16
  36. invalid-name:
    Constant name "UnpackInt" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_struct.py#L17
  37. invalid-name:
    Constant name "PackFloat" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_struct.py#L18
  38. invalid-name:
    Constant name "UnpackFloat" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_struct.py#L19
  39. invalid-name:
    Constant name "RegistryKey" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/_typeinfo.py#L28
  40. invalid-name:
    Constant name "Buffer" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/pq/abc.py#L19
  41. invalid-name:
    Constant name "version" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/pq/__init__.py#L42
  42. invalid-name:
    Constant name "PGconn" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/pq/__init__.py#L43
  43. invalid-name:
    Constant name "PGresult" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/pq/__init__.py#L44
  44. invalid-name:
    Constant name "Conninfo" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/pq/__init__.py#L45
  45. invalid-name:
    Constant name "Escaping" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/pq/__init__.py#L46
  46. invalid-name:
    Constant name "PGcancel" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/pq/__init__.py#L47
  47. invalid-name:
    Constant name "PGcancelConn" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/pq/__init__.py#L48
  48. invalid-name:
    Constant name "JsonDumpsFunction" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/json.py#L20
  49. invalid-name:
    Constant name "JsonLoadsFunction" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/json.py#L21
  50. invalid-name:
    Constant name "_default_dumpers" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/json.py#L233
  51. invalid-name:
    Constant name "Hstore" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/hstore.py#L39
  52. invalid-name:
    Constant name "EnumDumpMap" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/enum.py#L25
  53. invalid-name:
    Constant name "EnumLoadMap" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/enum.py#L26
  54. invalid-name:
    Constant name "EnumMapping" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/enum.py#L27
  55. invalid-name:
    Constant name "_HEnumDumpMap" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/enum.py#L30
  56. invalid-name:
    Constant name "_HEnumLoadMap" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/enum.py#L31
  57. invalid-name:
    Constant name "Address" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/net.py#L20
  58. invalid-name:
    Constant name "Interface" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/net.py#L21
  59. invalid-name:
    Constant name "Network" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/net.py#L22
  60. invalid-name:
    Constant name "ip_address" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/net.py#L25
  61. invalid-name:
    Constant name "ip_interface" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/net.py#L26
  62. invalid-name:
    Constant name "ip_network" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/net.py#L27
  63. invalid-name:
    Constant name "IPv4Address" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/net.py#L28
  64. invalid-name:
    Constant name "IPv6Address" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/net.py#L29
  65. invalid-name:
    Constant name "IPv4Interface" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/net.py#L30
  66. invalid-name:
    Constant name "IPv6Interface" doesn't conform to UPPER_CASE naming style
    https://github.com/psycopg/psycopg/blob/77f26ca387fdcaef3b33722dc89f90ed58bcf76c/psycopg/psycopg/types/net.py#L31
  67. invalid-name:
    Constant name "IPv4Network" doesn't conform to UPPER_CASE naming style
    ...

This comment was truncated because GitHub allows only 65536 characters in a comment.

This comment was generated for commit 2811003

@jacobtylerwalls
Copy link
Member Author

jacobtylerwalls commented Jul 7, 2024

Will leave this in a failing state until we remove support for Python 3.8 in #9774.

@jacobtylerwalls jacobtylerwalls added C: invalid-name Blocked 🚧 Blocked by a particular issue labels Jul 7, 2024
@jacobtylerwalls jacobtylerwalls modified the milestones: 3.3.0, 4.0.0 Jul 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Blocked 🚧 Blocked by a particular issue C: invalid-name
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Annotated module level constant not checked for invalid-name
2 participants