aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/golang.ts
diff options
context:
space:
mode:
authorJeremy Rifkin <51220084+jeremy-rifkin@users.noreply.github.com>2023-02-23 17:16:17 -0500
committerGitHub <noreply@github.com>2023-02-23 17:16:17 -0500
commit2b06c69111e1dc6b9b8d3c89764b78c8f050e47a (patch)
tree4410cd805a7b6aeda7e582d8a8f39a0d038b94d4 /lib/compilers/golang.ts
parent6bd5c43f627ee920bdb93a18e7b673b670d88068 (diff)
downloadcompiler-explorer-2b06c69111e1dc6b9b8d3c89764b78c8f050e47a.tar.gz
compiler-explorer-2b06c69111e1dc6b9b8d3c89764b78c8f050e47a.zip
Turn some auto-fixable eslint rules back on (#4766)gh-6434
This PR turns comma-dangle and indent eslint rules on for lib/. These are rules inherited from the eslint config for static/, this PR just makes things more consistent. Also turned @typescript-eslint/no-var-requires back on while I was here.
Diffstat (limited to 'lib/compilers/golang.ts')
-rw-r--r--lib/compilers/golang.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/golang.ts b/lib/compilers/golang.ts
index 2b41483c6..cf761a11c 100644
--- a/lib/compilers/golang.ts
+++ b/lib/compilers/golang.ts
@@ -176,7 +176,7 @@ export class GolangCompiler extends BaseCompiler {
collisions: number,
ins: string,
args: string,
- usedLabels: Record<string, boolean>,
+ usedLabels: Record<string, boolean>
): string {
// Check if last argument is a decimal number.
const match = args.match(DECIMAL_RE);