Repository Analysis

reduxjs/redux

A JS library for predictable global state management

0.1 Likely human-written View on GitHub
0.1
Adjusted Score
0.1
Raw Score
100%
Time Factor
2026-05-15
Last Push
61,444
Stars
TypeScript
Language
111,713
Lines of Code
362
Files
16
Pattern Hits
2026-05-31
Scan Date

Score History

Severity Breakdown

CRITICAL 0HIGH 0MEDIUM 0LOW 16

Pattern Findings

16 matches across 3 categories. Click a row to expand file-level details.

Hyper-Verbose Identifiers13 hits · 13 pts
SeverityFileLineSnippet
LOWtest/helpers/reducers.ts52export function dispatchInTheMiddleOfReducer(
LOWtest/helpers/reducers.ts65export function getStateInTheMiddleOfReducer(
LOWtest/helpers/reducers.ts78export function subscribeInTheMiddleOfReducer(
LOWtest/helpers/reducers.ts91export function unsubscribeInTheMiddleOfReducer(
LOWdocs/understanding/history-and-design/middleware.md114function patchStoreToAddCrashReporting(store) {
LOWdocs/understanding/history-and-design/middleware.md165function applyMiddlewareByMonkeypatching(store, middlewares) {
LOWdocs/usage/structuring-reducers/ReusingReducerLogic.md41function createCounterWithNamedType(counterName = '') {
LOWdocs/usage/structuring-reducers/ReusingReducerLogic.md54function createCounterWithNameData(counterName = '') {
LOWdocs/usage/structuring-reducers/ReusingReducerLogic.md108function createNamedWrapperReducer(reducerFunction, reducerName) {
LOWdocs/api/applyMiddleware.md121function makeASandwichWithSecretSauce(forPerson) {
LOWdocs/api/applyMiddleware.md146function makeSandwichesForEverybody() {
LOWsrc/createStore.ts162 function ensureCanMutateNextListeners() {
LOWsrc/combineReducers.ts14function getUnexpectedStateShapeWarningMessage(
Over-Commented Block2 hits · 2 pts
SeverityFileLineSnippet
LOWexamples/counter-ts/src/setupTests.ts1// jest-dom adds custom jest matchers for asserting on DOM nodes.
LOWexamples/counter/src/setupTests.js1// jest-dom adds custom jest matchers for asserting on DOM nodes.
Fake / Example Data1 hit · 1 pts
SeverityFileLineSnippet
LOW…/usage/structuring-reducers/ImmutableUpdatePatterns.md146var usersState = [{ name: 'John Doe', address: { city: 'London' } }]