Skip to content

Commit 0dc7cb6

Browse files
committed
Run ESLint
1 parent 91fbb5a commit 0dc7cb6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/version.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as core from "@actions/core"
22
import * as httpm from "@actions/http-client"
3-
import * as fs from 'fs'
3+
import * as fs from "fs"
44

55
// TODO: make a class
66
export type Version = {
@@ -61,7 +61,7 @@ const getRequestedLintVersion = (): Version => {
6161
let requestedLintVersion = core.getInput(`version`)
6262

6363
if (requestedLintVersion == "") {
64-
const content = fs.readFileSync('go.mod', 'utf-8')
64+
const content = fs.readFileSync("go.mod", "utf-8")
6565
const match = content.match(modVersionRe)
6666
if (match) {
6767
requestedLintVersion = match[0]

0 commit comments

Comments
 (0)