mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 05:50:43 -07:00
style: fix linting
This commit is contained in:
+1
-1
@@ -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'
|
||||
}
|
||||
|
||||
@@ -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'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user