app/assets/javascripts/reducers/articles.js
Function articles
has 86 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export default function articles(state = initialState, action) {
switch (action.type) {
case RECEIVE_ARTICLES: {
const wikis = uniqWith(
map(action.data.course.articles, mapWikis),
Function articles
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
Open
export default function articles(state = initialState, action) {
switch (action.type) {
case RECEIVE_ARTICLES: {
const wikis = uniqWith(
map(action.data.course.articles, mapWikis),
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid too many return
statements within this function. Open
Open
return { ...state, trackedStatusFilterEnabled, trackedStatusFilter, articles: updatedArticles };
Avoid too many return
statements within this function. Open
Open
return { ...state, currentPage: 1, totalPages: action.totalPages };
Avoid too many return
statements within this function. Open
Open
return { ...state, currentPage: action.page };
Avoid too many return
statements within this function. Open
Open
return { ...state, trackedStatusFilter: action.trackedStatus };
Avoid too many return
statements within this function. Open
Open
return { ...state, newnessFilter: action.newness };
Parsing error: Cannot find module 'babel-plugin-root-import'
Require stack:
- /usr/local/node_modules/@babel/core/lib/config/files/plugins.js
- /usr/local/node_modules/@babel/core/lib/config/files/index.js
- /usr/local/node_modules/@babel/core/lib/index.js
- /usr/local/node_modules/@babel/eslint-parser/lib/worker/babel-core.cjs
- /usr/local/node_modules/@babel/eslint-parser/lib/worker/handle-message.cjs
- /usr/local/node_modules/@babel/eslint-parser/lib/client.cjs
- /usr/local/node_modules/@babel/eslint-parser/lib/index.cjs
- /usr/local/node_modules/eslint/lib/cli-engine/config-array-factory.js
- /usr/src/app/lib/eslint6-patch.js
- /usr/src/app/lib/eslint.js
- /usr/src/app/bin/eslint.js Open
Open
import { uniqWith, map, isEqual } from 'lodash-es';
- Read upRead up
- Exclude checks
For more information visit Source: http://eslint.org/docs/rules/