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

Draft
wants to merge 1 commit 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.

@jacobtylerwalls jacobtylerwalls force-pushed the invalid-name-type-annotation branch 2 times, most recently from 4035baa to 2811003 Compare July 7, 2024 15:47

This comment has been minimized.

@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
mbyrnepr2
mbyrnepr2 previously approved these changes Jul 8, 2024
@jacobtylerwalls jacobtylerwalls modified the milestones: 3.3.0, 4.0.0 Jul 8, 2024
@jacobtylerwalls jacobtylerwalls modified the milestones: 4.0.0, 3.3.0 Sep 18, 2024
@jacobtylerwalls jacobtylerwalls removed the Blocked 🚧 Blocked by a particular issue label Sep 18, 2024

This comment has been minimized.

Copy link

codecov bot commented Sep 18, 2024

Codecov Report

All modified and coverable lines are covered by tests βœ…

Project coverage is 95.80%. Comparing base (67acc96) to head (692895e).
Report is 11 commits behind head on main.

Additional details and impacted files

Impacted file tree graph

@@            Coverage Diff             @@
##             main    #9771      +/-   ##
==========================================
- Coverage   95.80%   95.80%   -0.01%     
==========================================
  Files         174      174              
  Lines       18933    18932       -1     
==========================================
- Hits        18139    18138       -1     
  Misses        794      794              
Files with missing lines Coverage Ξ”
pylint/checkers/base/name_checker/checker.py 98.63% <100.00%> (-0.01%) ⬇️

Copy link
Contributor

πŸ€– 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/709f991aed8033beb6ea575188c96a6d75fd9c5a/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/709f991aed8033beb6ea575188c96a6d75fd9c5a/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/709f991aed8033beb6ea575188c96a6d75fd9c5a/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/709f991aed8033beb6ea575188c96a6d75fd9c5a/astroid/interpreter/_import/spec.py#L63

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

  1. invalid-name:
    Constant name "current_entry" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/config_entries.py#L1173
  2. invalid-name:
    Constant name "_function_cache" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/exceptions.py#L15
  3. invalid-name:
    Constant name "current_setup_group" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/setup.py#L38
  4. invalid-name:
    Constant name "_validating_async" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/config_validation.py#L145
  5. invalid-name:
    Constant name "current_request" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/http.py#L39
  6. invalid-name:
    Constant name "trace_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/trace.py#L102
  7. invalid-name:
    Constant name "trace_stack_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/trace.py#L106
  8. invalid-name:
    Constant name "trace_path_stack_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/trace.py#L110
  9. invalid-name:
    Constant name "variables_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/trace.py#L114
  10. invalid-name:
    Constant name "trace_id_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/trace.py#L116
  11. invalid-name:
    Constant name "script_execution_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/trace.py#L120
  12. invalid-name:
    Constant name "current_platform" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/entity_platform.py#L1050
  13. invalid-name:
    Constant name "_render_info" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/template.py#L128
  14. invalid-name:
    Constant name "template_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/template.py#L131
  15. invalid-name:
    Constant name "_types" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/template.py#L329
  16. invalid-name:
    Constant name "script_stack_cv" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/helpers/script.py#L159
  17. unsubscriptable-object:
    Value 'self.hass.data[DOMAIN]' is unsubscriptable
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/components/media_source/models.py#L89
  18. invalid-name:
    Constant name "_current_trace" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/components/conversation/trace.py#L78
  19. invalid-name:
    Constant name "_recent_traces" doesn't conform to UPPER_CASE naming style
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/components/conversation/trace.py#L81
  20. unsupported-assignment-operation:
    'self.hass.data[DATA_LAST_WAKE_UP]' does not support item assignment
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/components/assist_pipeline/pipeline.py#L770
  21. unsupported-assignment-operation:
    'self.run.hass.data[DATA_LAST_WAKE_UP]' does not support item assignment
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/components/assist_pipeline/pipeline.py#L1377
  22. unsupported-assignment-operation:
    'self.hass.data[DOMAIN]' does not support item assignment
    https://github.com/home-assistant/core/blob/12dbabb849692577beebdb5024fa0f8f5572e4bb/homeassistant/components/system_health/__init__.py#L228

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/a2b6f0015c4a721575488bbe8c0a42c6b16f617e/src/poetry/core/vcs/git.py#L152

Effect on black:
The following messages are now emitted:

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

Effect on music21:
The following messages are now emitted:

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

The following messages are no longer emitted:

  1. redefined-variable-type:
    Redefinition of thisObject type from music21.note.Note to music21.note.GeneralNote
    https://github.com/cuthbertLab/music21/blob/cfabad142f8d42d94fbfeff497285c7bd4be4db1/music21/humdrum/spineParser.py#L2378
  2. redefined-variable-type:
    Redefinition of n type from music21.note.Note to music21.note.GeneralNote
    https://github.com/cuthbertLab/music21/blob/cfabad142f8d42d94fbfeff497285c7bd4be4db1/music21/abcFormat/translate.py#L381

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/f8789bcd034035c09f572f61ead943cfa8e30c09/src/_pytest/_argcomplete.py#L107
  2. invalid-name:
    Constant name "imply_paths_hooks" doesn't conform to UPPER_CASE naming style
    https://github.com/pytest-dev/pytest/blob/f8789bcd034035c09f572f61ead943cfa8e30c09/src/_pytest/config/compat.py#L17
  3. invalid-name:
    Constant name "_reprcompare" doesn't conform to UPPER_CASE naming style
    https://github.com/pytest-dev/pytest/blob/f8789bcd034035c09f572f61ead943cfa8e30c09/src/_pytest/assertion/util.py#L31
  4. invalid-name:
    Constant name "_assertion_pass" doesn't conform to UPPER_CASE naming style
    https://github.com/pytest-dev/pytest/blob/f8789bcd034035c09f572f61ead943cfa8e30c09/src/_pytest/assertion/util.py#L35
  5. invalid-name:
    Constant name "_config" doesn't conform to UPPER_CASE naming style
    https://github.com/pytest-dev/pytest/blob/f8789bcd034035c09f572f61ead943cfa8e30c09/src/_pytest/assertion/util.py#L38
  6. redefined-variable-type:
    Redefinition of file type from _io.TextIOWrapper to colorama.ansitowin32.StreamWrapper
    https://github.com/pytest-dev/pytest/blob/f8789bcd034035c09f572f61ead943cfa8e30c09/src/_pytest/_io/terminalwriter.py#L84

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/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/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/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/generic.py#L12515
  3. invalid-name:
    Constant name "_min_examples" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/generic.py#L12519
  4. invalid-name:
    Constant name "_shared_docs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/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/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/shared_docs.py#L3
  6. invalid-name:
    Constant name "_evaluate" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/computation/expressions.py#L33
  7. invalid-name:
    Constant name "_where" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/computation/expressions.py#L34
  8. invalid-name:
    Constant name "_op_descriptions" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/ops/docstrings.py#L305
  9. invalid-name:
    Constant name "_index_doc_kwargs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/indexes/base.py#L219
  10. invalid-name:
    Constant name "_index_shared_docs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/indexes/base.py#L227
  11. invalid-name:
    Constant name "_interval_shared_docs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/arrays/interval.py#L115
  12. invalid-name:
    Constant name "_extension_array_shared_docs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/arrays/base.py#L108
  13. invalid-name:
    Constant name "_shared_docs" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/strings/accessor.py#L66
  14. invalid-name:
    Constant name "default_dtype_mapping" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/_numba/executor.py#L111
  15. invalid-name:
    Constant name "float_dtype_mapping" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/_numba/executor.py#L129
  16. invalid-name:
    Constant name "identity_dtype_mapping" doesn't conform to UPPER_CASE naming style
    https://github.com/pandas-dev/pandas/blob/8b1b2114ea72b9b79220e3cb2828b3e562bb5e07/pandas/core/_numba/executor.py#L144

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

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/2fec0b206c6e83ea813ab26597e15c96fab08be7/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/2fec0b206c6e83ea813ab26597e15c96fab08be7/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/2fec0b206c6e83ea813ab26597e15c96fab08be7/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/2fec0b206c6e83ea813ab26597e15c96fab08be7/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/2fec0b206c6e83ea813ab26597e15c96fab08be7/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/2fec0b206c6e83ea813ab26597e15c96fab08be7/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/2fec0b206c6e83ea813ab26597e15c96fab08be7/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/2fec0b206c6e83ea813ab26597e15c96fab08be7/src/flask/globals.py#L49

Effect on psycopg:
The following messages are now emitted:

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

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

This comment was generated for commit 692895e

@jacobtylerwalls
Copy link
Member Author

DO NOT MERGE -- discussion on #9770 suggests holding until 4.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Breaking changes for 4.0 🦀 C: invalid-name False Negative πŸ¦‹ No message is emitted but something is wrong with the code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

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