chore: fix linting

This commit is contained in:
harttle
2019-02-23 03:50:45 +08:00
parent 56c7992b76
commit 3cf01603e8
35 changed files with 107 additions and 110 deletions
+1 -3
View File
@@ -1,3 +1 @@
type FilterImpl = (value: any, ...args: any[]) => any
export default FilterImpl
export type FilterImpl = (value: any, ...args: any[]) => any
+1 -1
View File
@@ -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 -1
View File
@@ -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