Skip to content

Commit 95e6bbb

Browse files
committed
linting
1 parent 23d298a commit 95e6bbb

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

libs/remix-solidity/src/compiler/compiler-input.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,3 @@ export function getValidLanguage (val: string): Language {
4242
}
4343
return null
4444
}
45-

libs/remix-solidity/test/compiler-input.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
'use strict'
22
import tape from 'tape'
3-
import { getValidLanguage } from "../src/compiler/compiler-input";
4-
import { Language } from "../src/compiler/types";
3+
import { getValidLanguage } from '../src/compiler/compiler-input'
4+
import { Language } from '../src/compiler/types'
55

66
tape('compiler-input', function (t) {
77
t.test('getValidLanguage', function (st) {
88
st.plan(9)
99

10-
const correctYul: Language = 'Yul';
11-
const correctSolidity: Language = 'Solidity';
10+
const correctYul: Language = 'Yul'
11+
const correctSolidity: Language = 'Solidity'
1212

1313
const yulUpperCase = 'Yul'
1414
const yulLowerCase = 'yul'

0 commit comments

Comments
 (0)