style: remove semi

This commit is contained in:
Jun Yang
2019-06-27 09:32:51 +08:00
parent edb2cc1f37
commit 96c061bee0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import * as _ from './util/underscore'
import IFS from './fs/ifs';
import IFS from './fs/ifs'
export interface LiquidOptions {
/** `root` is a directory or an array of directories to resolve layouts and includes, as well as the filename passed in when calling `.renderFile()`. If an array, the files are looked up in the order they occur in the array. Defaults to `["."]` */
+1 -1
View File
@@ -15,7 +15,7 @@ import builtinTags from './builtin/tags'
import builtinFilters from './builtin/filters'
import { LiquidOptions, NormalizedFullOptions, applyDefault, normalize } from './liquid-options'
import { FilterImplOptions } from './template/filter/filter-impl-options'
import IFS from './fs/ifs';
import IFS from './fs/ifs'
export default class Liquid {
public options: NormalizedFullOptions