Showing 31 of 31 total issues
Function _applyValidationClasses
has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring. Open
private _applyValidationClasses():void
{
if(this._validator && this._element)
{
const isValid = this.isValid();
- 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 parseBindingRule
has 53 lines of code (exceeds 25 allowed). Consider refactoring. Open
const parseBindingRule = (rule:RuleBindingValue, name:string = null):RuleState =>
{
switch(typeof rule)
{
case 'object':
Function parseBindingRule
has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring. Open
const parseBindingRule = (rule:RuleBindingValue, name:string = null):RuleState =>
{
switch(typeof rule)
{
case 'object':
- 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 exports
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Open
module.exports = function (config)
{
config.set({
frameworks: ['mocha', 'chai'],
files: [
Function getAllBindingValues
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
const getAllBindingValues = (element:HTMLElement, allBindingsAccessor:ko.AllBindingsAccessor, bindingContext:ko.BindingContext<any>):{[name:string]:BindingDescriptor} =>
{
const shorthandValues = allBindingsAccessor.get(SHORTHAND_BINDING_NAME) || {};
const allBindings:{[name:string]:BindingDescriptor} = {};
Function exports
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
module.exports = function()
{
return {
resolve: {
extensions: ['', '.ts', '.js']
Function createValueBinding
has 34 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const createValueBinding = (element:HTMLElement, allBindingsAccessor:ko.AllBindingsAccessor, viewModel:any, bindingContext:ko.BindingContext<any>):ko.Observable<any> =>
{
const hasValueBinding = allBindingsAccessor.has('value');
const valueBindingKey = getValueBindingKey(element);
if(valueBindingKey == 'selectedOptions' && hasValueBinding)
Function validate
has 32 lines of code (exceeds 25 allowed). Consider refactoring. Open
public validate(value:any):Promise<boolean>
{
let validation:Promise<boolean>;
switch(this.ruleType)
{
Function constructor
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
constructor(
name:string,
ruleType:RuleType,
test:any
)
Function getValueBindingKey
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const getValueBindingKey = (element:HTMLElement):string =>
{
const tagName = element.tagName.toLowerCase();
const typeAttr = element.getAttribute('type');
let valueBindingKey = 'value';
Function exports
has 27 lines of code (exceeds 25 allowed). Consider refactoring. Open
module.exports = function()
{
return {
resolve: {
extensions: ['', '.ts', '.js']
Function constructor
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
constructor()
{
super();
this.isValidated = ko.pureComputed(() =>
Avoid deeply nested control flow statements. Open
if(typeof shorthandValues[binding.bindingShorthand] !== 'undefined')
{
field[binding.validatorFieldProp] = shorthandValues[binding.bindingShorthand];
}
Function getValueBindingKey
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
export const getValueBindingKey = (element:HTMLElement):string =>
{
const tagName = element.tagName.toLowerCase();
const typeAttr = element.getAttribute('type');
let valueBindingKey = 'value';
- 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 constructor
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
constructor()
{
super();
this.isValidated = ko.pureComputed(() =>
- 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 deeply nested control flow statements. Open
if(binding)
{
field[binding.validatorFieldProp] = value;
}
Function createValueBinding
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
export const createValueBinding = (element:HTMLElement, allBindingsAccessor:ko.AllBindingsAccessor, viewModel:any, bindingContext:ko.BindingContext<any>):ko.Observable<any> =>
{
const hasValueBinding = allBindingsAccessor.has('value');
const valueBindingKey = getValueBindingKey(element);
if(valueBindingKey == 'selectedOptions' && hasValueBinding)
- 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 validateOn
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
public set validateOn(validateOn:string)
{
if(this._validateOn !== validateOn)
{
this._autoValidate = false;
- 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 _initComputed
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
private _initComputed():void
{
this.isValid = ko.pureComputed(() =>
{
const fields = this._fields();
- 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
Unnecessary semicolon Open
};
- Read upRead up
- Exclude checks
Rule: semicolon
Enforces consistent semicolon usage at the end of every statement.
Notes
- Has Fix
Config
One of the following arguments must be provided:
-
"always"
enforces semicolons at the end of every statement. -
"never"
disallows semicolons at the end of every statement except for when they are necessary.
The following arguments may be optionally provided:
-
"ignore-interfaces"
skips checking semicolons at the end of interface members. -
"ignore-bound-class-methods"
skips checking semicolons at the end of bound class methods. -
"strict-bound-class-methods"
disables any special handling of bound class methods and treats them as any other assignment. This option overrides"ignore-bound-class-methods"
.
Examples
"semicolon": true,always
"semicolon": true,never
"semicolon": true,always,ignore-interfaces
"semicolon": true,always,ignore-bound-class-methods
Schema
{
"type": "array",
"items": [
{
"type": "string",
"enum": [
"always",
"never"
]
},
{
"type": "string",
"enum": [
"ignore-interfaces"
]
}
],
"additionalItems": false
}
For more information see this page.