style: fix linting

This commit is contained in:
harttle
2019-08-26 10:15:43 -05:00
committed by Jun Yang
parent 7fb01ad69a
commit 0426d08fd0
12 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ import * as chaiAsPromised from 'chai-as-promised'
use(chaiAsPromised)
class SettingsDrop extends Drop {
private foo: string = 'FOO'
private foo = 'FOO'
public bar () {
return 'BAR'
}
+1 -1
View File
@@ -6,7 +6,7 @@ describe('drop/drop', function () {
before(() => (liquid = new Liquid()))
class CustomDrop extends Drop {
private name: string = 'NAME'
private name = 'NAME'
public getName () {
return 'GET NAME'
}