sisoe24 / Nuke-Tools

Found warning comments in code JS-0099
Documentation
Minor
16 hours ago7 months old
Unexpected 'todo' comment: 'TODO: send all the code at once and then...'
205        const files = osWalk(KNOBS_DIR);
206        const sleep = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));
207
208        // TODO: send all the code at once and then rename the files.209
210        for (let i = 0; i < files.length; i++) {
211            const file = files[i];
Unexpected 'todo' comment: 'TODO: add command only to knobs'
171        this.description = this.version;
172        this.contextValue = context.context;
173
174        // TODO: add command only to knobs175        this.command = {
176            command: "nuke-tools.on_itemClicked",
177            title: label,
Unexpected 'todo' comment: 'TODO: add windows support.'
118export function getCliCmd(execPath: ExecutablePath): string {
119    const cliCmd = execPath.cliCmd();
120
121    // TODO: add windows support.122    if (os.type() === "Windows_NT") {
123        return cliCmd;
124    }