Showing 38 of 79 total issues
Function generate
has 44 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function generate(self: CustomGenerator): void {
const destPkgJson = require(resolveFile("package.json.js"))(self.answers.devServer);
const sourcePkgJsonPath = self.destinationPath("package.json");
try {
Function runTestWithHelp
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const runTestWithHelp = (pkg, cliArgs = [], logMessage, isSubPackage = false) => {
// Simulate package missing
swapPkgName(pkg, isSubPackage);
const proc = execa(CLI_ENTRY_PATH, cliArgs, {
Function runTest
has 42 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const runTest = (pkg, cliArgs = [], logMessage, isSubPackage = false) => {
// Simulate package missing
swapPkgName(pkg, isSubPackage);
const proc = execa(CLI_ENTRY_PATH, cliArgs, {
Function actions
has 38 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
actions: function (answers: Answers) {
const actions: ActionType[] = [];
answers.projectPath = join(answers.projectPath, answers.name);
logger.error(`
Function actions
has 38 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
actions: function (answers: Answers) {
const actions: ActionType[] = [];
answers.projectPath = join(answers.projectPath, answers.name);
logger.error(`
Function getDiff
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function getDiff(filePath: string, tempFilePath: string): Promise<void> {
return new Promise((resolve, reject) => {
const platform = process.platform;
let editor = "";
Function writing
has 29 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public writing(): void {
const name = (this.props as Generator.Question).name as string;
const resolvedTemplatePath = this.resolvedTemplatePath as string;
const packageJsonTemplatePath = "../addon-template/package.json.js";
Function generate
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
export function generate(self: CustomGenerator): void {
const files = ["./index.html", "./src/assets/webpack.png", "webpack.config.js", "package.json"];
switch (self.answers.langType) {
case "Typescript":
Function returnPromise
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
const returnPromise: Promise<string> = new Promise((resolve, reject) => {
const returnMessage = `Project Dependencies installed successfully`;
const packageManager = answers.packageManager;
const packages = config.packages.length == 1 ? [config.packages[0]] : config.packages;
const installOptions: Record<string, Array<string>> = {
Function addonGenerator
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
Open
const addonGenerator = <
T extends BaseCustomGeneratorOptions = BaseCustomGeneratorOptions,
Z extends CustomGeneratorOptions<T> = CustomGeneratorOptions<T>,
>(
prompts: Generator.Questions,
- 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 generate
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
Open
export function generate(self: CustomGenerator): void {
const destPkgJson = require(resolveFile("package.json.js"))(self.answers.devServer);
const sourcePkgJsonPath = self.destinationPath("package.json");
try {
- 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 List
has 6 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
self: Generator,
name: string,
message: string,
choices: string[],
defaultChoice: string,
Function Confirm
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
self: Generator,
name: string,
message: string,
defaultChoice = true,
skip = false,
Function Input
has 5 arguments (exceeds 4 allowed). Consider refactoring. Open
Open
self: Generator,
name: string,
message: string,
defaultChoice: string,
skip = false,
Avoid too many return
statements within this function. Open
Open
return { status: "overwrite", content: newContent };
Avoid too many return
statements within this function. Open
Open
return { status: "identical", content: existingFileContent };
Avoid too many return
statements within this function. Open
Open
return userChoice;
Avoid too many return
statements within this function. Open
Open
return { status: "create", content: newContent };