Showing 9 of 133 total issues
Function renderAngular
has 47 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const renderAngular = (
setupOptions: NgSetupOptions | NgSetupOptions[],
request: FastifyRequest,
opts?: RenderOptions
) => {
Function action
has 47 lines of code (exceeds 25 allowed). Consider refactoring. Open
@Method()
async action(action: TA, value?: any) {
switch (action) {
case TA.bold:
case TA.indent:
Function getState
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
private getState() {
const backState: TextActionState = {};
const fb = this.queryCommandValue('formatBlock');
if (fb === 'blockquote') {
backState[TA.quote] = true;
Function copyAssets
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
export async function copyAssets(
entries: { glob: string; ignore?: string[]; input: string; output: string; flatten?: boolean }[],
basePaths: Iterable<string>,
root: string,
changed?: Set<string>
Function elementEditDataOptions
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
const elementEditDataOptions = (configs: IElementConfig[], data: IElementData, options?: ElementsEditOptions) => {
const { tag, class: cls, attributes: attrs, events } = data;
// tag 必须的
if (!tag) {
return null;
Avoid deeply nested control flow statements. Open
if (!fs.existsSync(dir)) {
fs.mkdirSync(dir, { recursive: true });
}
Function action
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
@Method()
async action(action: TA, value?: any) {
switch (action) {
case TA.bold:
case TA.indent:
- 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 7 (exceeds 5 allowed). Consider refactoring. Open
render() {
const cls = {
loaded: !!this.loaded,
[this.animation]: !!this.animation
};
- 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 getHtmlCoverageInfo
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
function getHtmlCoverageInfo(html: string) {
const back: CoverageInfo = {} as any;
let newHtml = html;
for (let i = 0; i < 4; i++) {
const match = reg.exec(newHtml);
- 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"