run auto fix lint

This commit is contained in:
Olivier Gagnon
2021-04-29 23:52:56 -04:00
parent 77cb63e36a
commit 3fad505096
183 changed files with 1547 additions and 1546 deletions
+6 -6
View File
@@ -11,7 +11,7 @@ import { FconfSettings } from "../Fconf/FconfSettings";
import {
iTutorialSteps,
iTutorialNextStep,
ITutorial
ITutorial,
} from "../InteractiveTutorial";
import { Player } from "../Player";
import { AceEditor } from "../ScriptEditor/Ace";
@@ -31,7 +31,7 @@ import { dialogBoxCreate } from "../../utils/DialogBox";
import {
Reviver,
Generic_toJSON,
Generic_fromJSON
Generic_fromJSON,
} from "../../utils/JSONReviver";
import { compareArrays } from "../../utils/helpers/compareArrays";
import { createElement } from "../../utils/uiHelpers/createElement";
@@ -56,12 +56,12 @@ export function scriptEditorInit() {
editor.beautifyScript();
}
return false;
}
},
});
// Text that displays RAM calculation
scriptEditorRamText = createElement("p", {
display:"inline-block", margin:"10px", id:"script-editor-status-text"
display:"inline-block", margin:"10px", id:"script-editor-status-text",
});
// Label for checkbox (defined below)
@@ -70,7 +70,7 @@ export function scriptEditorInit() {
innerText:"Dynamic RAM Usage Checker", color:"white",
tooltip:"Enable/Disable the dynamic RAM Usage display. You may " +
"want to disable it for very long scripts because there may be " +
"performance issues"
"performance issues",
});
// Checkbox for enabling/disabling dynamic RAM calculation
@@ -97,7 +97,7 @@ export function scriptEditorInit() {
clickListener:()=>{
saveAndCloseScriptEditor();
return false;
}
},
});
// Add all buttons to the UI