Skip to content
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

Merged
merged 11 commits into from
Jan 4, 2025
Merged

592 #602

merged 11 commits into from
Jan 4, 2025

Conversation

mountaindude
Copy link
Contributor

No description provided.

Copy link

sonarqubecloud bot commented Jan 4, 2025

Quality Gate Failed Quality Gate failed

Failed conditions
24.6% Duplication on New Code (required ≤ 3%)
C Reliability Rating on New Code (required ≥ A)

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

This replaces only the first occurrence of '\n'.
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

This replaces only the first occurrence of '\n'.
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

This replaces only the first occurrence of '\n'.
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

This replaces only the first occurrence of '\n'.
@mountaindude mountaindude merged commit 82cb103 into ptarmiganlabs:main Jan 4, 2025
3 of 5 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant