Skip to content

Commit

Permalink
style: remove semi
Browse files Browse the repository at this point in the history
  • Loading branch information
harttle committed Jun 27, 2019
1 parent edb2cc1 commit 96c061b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/liquid-options.ts
Original file line number Diff line number Diff line change
@@ -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 `["."]` */
Expand Down
2 changes: 1 addition & 1 deletion src/liquid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 96c061b

Please sign in to comment.