Skip to content

Commit

Permalink
ci: Fix Lint -- Workflow Bot
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S authored and github-actions[bot] committed Nov 6, 2024
1 parent 637260e commit 820969e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/cspell-eslint-plugin/fixtures/simple/sample.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"use strict"
'use strict';

const fs = require('fs');
const commander = require('commander');
Expand All @@ -11,9 +11,9 @@ This is some help.
* run code
*/
export function command(cmd) {
const prompt = "Enter your name:";
const prompt = 'Enter your name:';

return prompt;
return prompt;
}

command(commander);

0 comments on commit 820969e

Please sign in to comment.