Showing 155 of 280 total issues
Avoid too many return
statements within this function. Open
return 'Sutta';
Avoid too many return
statements within this function. Open
return 'Segment';
Avoid too many return
statements within this function. Open
return html`
<table-view-multiling
.fileName="${this.fileName}"
.score="${this.score}"
.multiSearchString="${this.multiSearchString}"
Avoid too many return
statements within this function. Open
return html`
<h2>Select the view mode.</h2>
`;
Avoid too many return
statements within this function. Open
return html`
<english-view-router
.fileName="${this.fileName}"
.folio="${this.folio}"
.showSCEnglish="${this.showSCEnglish}"
Avoid too many return
statements within this function. Open
return 'Segment';
Avoid too many return
statements within this function. Open
return html`
<neutral-view-multiling></neutral-view-multiling>
`;
Avoid too many return
statements within this function. Open
return html`
<neutral-view .lang="${this.lang}"></neutral-view>
`;
Function handleSpaces
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function handleSpaces(str, i) {
//return int
var found = 0;
// var orig_i = i;
while (i < str.length && str.charAt(i) == ' ') {
- 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
Function renderFilesCollectionFilters
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
renderFilesCollectionFilters() {
const loading =
this.filterCategoriesDataLoading ||
this.filterFilesDataLoading ||
this.filterCategoriesDataLoading ||
- 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
Function putStackTogether
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function putStackTogether(st) {
var out = '';
// put the main elements together... stacked with "+" unless it's a regular stack
if (tib_stack(st.cons_str)) {
out += st.stack.join('');
- 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
Function EnglishSegmentContainer
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
export function EnglishSegmentContainer({
segmentNr,
segText,
activeSegment,
showSegmentNumbers,
- 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
Function consonantString
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function consonantString(tokens, i) {
// strings, int
var out = [];
var t = '';
while (tokens[i] != null) {
- 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
Function render
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
render() {
if (this.fetchLoading) {
return;
}
// prettier-ignore
- 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
Function render
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
render() {
const shouldShowTextSearchBox =
(this.viewMode === DATA_VIEW_MODES.TEXT ||
this.viewMode === DATA_VIEW_MODES.TEXT_SEARCH) &&
this.fileName;
- 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"