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 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.

@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%) ⬇️

This comment has been minimized.

@jacobtylerwalls
Copy link
Member Author

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

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 "cache" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/pylint-dev/astroid/blob/7710b7b446e7d99fb0d6150707964d0e8d0d3c11/astroid/inference_tip.py#L22
  2. invalid-name:
    Constant name "prefix" doesn't conform to '(([A-Z_][A-Z0-9_])|(.*))$' pattern*
    https://github.com/pylint-dev/astroid/blob/7710b7b446e7d99fb0d6150707964d0e8d0d3c11/astroid/modutils.py#L82
  3. invalid-name:
    Constant name "MetaPathFinderModuleTypes" doesn't conform to '(([A-Z][A-Z0-9_])|(.*))$' pattern*
    https://github.com/pylint-dev/astroid/blob/7710b7b446e7d99fb0d6150707964d0e8d0d3c11/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/7710b7b446e7d99fb0d6150707964d0e8d0d3c11/astroid/interpreter/_import/spec.py#L63

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

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

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/1bdbd900c4fc1e2d4ed1ef15dfbcafdcb66dd892/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/fff747d61befcae0777667c14055398c22c178dc/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/fff747d61befcae0777667c14055398c22c178dc/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/fff747d61befcae0777667c14055398c22c178dc/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/fff747d61befcae0777667c14055398c22c178dc/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/fff747d61befcae0777667c14055398c22c178dc/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/fff747d61befcae0777667c14055398c22c178dc/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/fff747d61befcae0777667c14055398c22c178dc/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/fff747d61befcae0777667c14055398c22c178dc/src/blib2to3/pgen2/literals.py#L9

Effect on music21:
The following messages are now emitted:

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

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/b90c7825d7f047309c1abd7b299fc1e8c68ecec3/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/b90c7825d7f047309c1abd7b299fc1e8c68ecec3/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/b90c7825d7f047309c1abd7b299fc1e8c68ecec3/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/b90c7825d7f047309c1abd7b299fc1e8c68ecec3/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/b90c7825d7f047309c1abd7b299fc1e8c68ecec3/src/_pytest/config/compat.py#L17

Effect on pandas:
The following messages are now emitted:

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

Effect on sentry:
The following messages are now emitted:

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

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

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

This comment was generated for commit cec2b31

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
3 participants