mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-18 05:50:43 -07:00
chore: fix linting
This commit is contained in:
@@ -1,3 +1 @@
|
||||
type FilterImpl = (value: any, ...args: any[]) => any
|
||||
|
||||
export default FilterImpl
|
||||
export type FilterImpl = (value: any, ...args: any[]) => any
|
||||
|
||||
@@ -2,7 +2,7 @@ import assert from 'src/util/assert'
|
||||
import * as lexical from 'src/parser/lexical'
|
||||
import { evalValue } from 'src/render/syntax'
|
||||
import Scope from 'src/scope/scope'
|
||||
import FilterImpl from './filter-impl'
|
||||
import { FilterImpl } from './filter-impl'
|
||||
|
||||
const valueRE = new RegExp(`${lexical.value.source}`, 'g')
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { hashCapture } from 'src/parser/lexical'
|
||||
import { evalValue } from 'src/render/syntax'
|
||||
import Scope from 'src/scope/scope';
|
||||
import Scope from 'src/scope/scope'
|
||||
|
||||
/**
|
||||
* Key-Value Pairs Representing Tag Arguments
|
||||
|
||||
Reference in New Issue
Block a user