-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
592 #602
592 #602
Conversation
…task-get` command
…only parts of a task network Implements ptarmiganlabs#581
… command Implements ptarmiganlabs#597
…etwork diagram to the legend Implements ptarmiganlabs#595
…eow task-vis` command Implements ptarmiganlabs#601
Quality Gate failedFailed conditions See analysis details on SonarQube Cloud Catch issues before they fail your Quality Gate with our IDE extension SonarQube for IDE |
buffer = xlsx.build([{ name: 'Ctrl-Q task export', data: taskTable }]); | ||
} else if (options.outputFileFormat === 'csv') { | ||
// Remove newlines in column names | ||
taskTable[0] = taskTable[0].map((item) => item.replace('\n', ' ')); |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High
buffer = stringify(taskTable); | ||
} else if (options.outputFileFormat === 'json') { | ||
// Remove newlines in column names | ||
taskTable[0] = taskTable[0].map((item) => item.replace('\n', ' ')); |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High
buffer = xlsx.build([{ name: 'Ctrl-Q task export', data: taskTable }]); | ||
} else if (options.outputFileFormat === 'csv') { | ||
// Remove newlines in column names | ||
taskTable[0] = taskTable[0].map((item) => item.replace('\n', ' ')); |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High
buffer = stringify(taskTable); | ||
} else if (options.outputFileFormat === 'json') { | ||
// Remove newlines in column names | ||
taskTable[0] = taskTable[0].map((item) => item.replace('\n', ' ')); |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High
No description provided.