diff options
author | Matt Godbolt <matt@godbolt.org> | 2022-07-19 05:56:28 -0500 |
---|---|---|
committer | Matt Godbolt <matt@godbolt.org> | 2022-07-19 05:56:28 -0500 |
commit | 685970f591cbfeab6612b443e89948ee6a3e4d59 (patch) | |
tree | 41d86b467f103687f336ec7ccf36e3a7112efc6b | |
parent | 9b9ccc681863c3d903ead4b27f2647f32a71022a (diff) | |
download | compiler-explorer-gh-3670.tar.gz compiler-explorer-gh-3670.zip |
Lint fixgh-3670
-rw-r--r-- | lib/compilers/pony.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/compilers/pony.ts b/lib/compilers/pony.ts index cb4016560..7909064ee 100644 --- a/lib/compilers/pony.ts +++ b/lib/compilers/pony.ts @@ -24,10 +24,11 @@ import path from 'path'; +import _ from 'underscore'; + +import {CompilationResult, ExecutionOptions} from '../../types/compilation/compilation.interfaces'; import {ParseFilters} from '../../types/features/filters.interfaces'; import {BaseCompiler} from '../base-compiler'; -import {CompilationResult, ExecutionOptions} from '../../types/compilation/compilation.interfaces'; -import _ from 'underscore'; export class PonyCompiler extends BaseCompiler { static get key() { |