Showing 29 of 553 total issues
Function setDefaults
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
export function setDefaults(host: Tree, options: NormalizedOptions) {
const workspace = readWorkspaceConfiguration(host);
if (!workspace.defaultProject) {
workspace.defaultProject = options.projectName;
Function nodeGenerator
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
export const nodeGenerator = async (tree: Tree, options: NormalizedOptions) => {
if (options.isApp) {
return initGenerator(tree, {
js: options.js,
skipFormat: options.skipFormat,
Function addProjectConfig
has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring. Open
export function addProjectConfig(tree: Tree, options: NormalizedOptions) {
const {
codegen,
isApp,
isLibrary,
- 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 compileSwc
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
export async function compileSwc(
context: ExecutorContext,
normalizedOptions: NormalizedSwcExecutorOptions,
postCompilationCallback: () => Promise<void>
) {
Function addDependencies
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
export function addDependencies(
host: Tree,
options: Pick<CreateMeshExampleOptions, 'example' | 'codegen'>
) {
let exampleDeps = {
Function baseGenerator
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
export async function baseGenerator(tree: Tree, baseOptions: BaseOptions) {
const options = normalizeOptions(tree, baseOptions);
const { isCypress, isApp, isLibrary, skipFormat } = options;
const tasks: GeneratorCallback[] = [await nodeGenerator(tree, options)];
Function normalizeOptions
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
export function normalizeOptions(
options: SwcExecutorOptions,
contextRoot: string,
sourceRoot?: string,
projectRoot?: string
- 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 setDefaults
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
export function setDefaults(host: Tree, options: NormalizedOptions) {
const workspace = readWorkspaceConfiguration(host);
if (!workspace.defaultProject) {
workspace.defaultProject = options.projectName;
- 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 runTasksInSerial
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
(...tasks: GeneratorCallback[]): GeneratorCallback =>
async () => {
for (const task of tasks) {
if (task instanceof Promise) {
await task();
- 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"