add prettier-ignore to jspsych.ts

This commit is contained in:
Cherrie Chang 2024-12-18 16:30:17 -05:00
parent 5b64a47138
commit 81e747313a

View File

@ -266,7 +266,8 @@ export class JsPsych {
format: "apa" | "bibtex" = "apa" format: "apa" | "bibtex" = "apa"
) { ) {
const formatOptions = ["apa", "bibtex"]; const formatOptions = ["apa", "bibtex"];
const jsPsychCitations: any = "__CITATIONS__"; // prettier-ignore
const jsPsychCitations: any = '__CITATIONS__';
format = format.toLowerCase() as "apa" | "bibtex"; format = format.toLowerCase() as "apa" | "bibtex";
// Check if plugins is an array // Check if plugins is an array
if (!Array.isArray(plugins)) { if (!Array.isArray(plugins)) {